diff --git a/model.js b/model.js index 81f8eac..cf6f6c5 100644 --- a/model.js +++ b/model.js @@ -18130,8 +18130,964 @@ export default [ "versions": [ { "version": "1.0.3", + "channels": [ + "fast", + "regular" + ], + "documentation": "https://kyma-project.io/#/nats-manager/user/README", + "repository": "https://github.com/kyma-project/nats-manager.git", + "managerPath": "/apis/apps/v1/namespaces/kyma-system/deployments/nats-manager", + "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "resources": [ + { + "apiVersion": "apiextensions.k8s.io/v1", + "kind": "CustomResourceDefinition", + "metadata": { + "annotations": { + "controller-gen.kubebuilder.io/version": "v0.11.1" + }, + "creationTimestamp": null, + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats.operator.kyma-project.io" + }, + "spec": { + "group": "operator.kyma-project.io", + "names": { + "kind": "NATS", + "listKind": "NATSList", + "plural": "nats", + "singular": "nats" + }, + "scope": "Namespaced", + "versions": [ + { + "additionalPrinterColumns": [ + { + "description": "State of NATS deployment", + "jsonPath": ".status.state", + "name": "State", + "type": "string" + }, + { + "description": "Age of the resource", + "jsonPath": ".metadata.creationTimestamp", + "name": "Age", + "type": "date" + } + ], + "name": "v1alpha1", + "schema": { + "openAPIV3Schema": { + "description": "NATS is the Schema for the NATS API.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "type": "object" + }, + "spec": { + "default": { + "cluster": { + "size": 3 + }, + "jetStream": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "logging": { + "debug": false, + "trace": false + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + } + }, + "description": "NATSSpec defines the desired state of NATS.", + "properties": { + "annotations": { + "additionalProperties": { + "type": "string" + }, + "description": "Annotations allows to add annotations to NATS.", + "type": "object" + }, + "cluster": { + "default": { + "size": 3 + }, + "description": "Cluster defines configurations that are specific to NATS clusters.", + "properties": { + "size": { + "default": 3, + "description": "Size of a NATS cluster, i.e. number of NATS nodes.", + "minimum": 1, + "type": "integer", + "x-kubernetes-validations": [ + { + "message": "size only accepts odd numbers", + "rule": "(self%2) != 0" + }, + { + "message": "cannot be set to 1 if size was greater than 1", + "rule": "!(oldSelf > 1 && self == 1)" + } + ] + } + }, + "type": "object" + }, + "jetStream": { + "default": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "description": "JetStream defines configurations that are specific to NATS JetStream.", + "properties": { + "fileStorage": { + "default": { + "size": "1Gi", + "storageClassName": "default" + }, + "description": "FileStorage defines configurations to file storage in NATS JetStream.", + "properties": { + "size": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "default": "1Gi", + "description": "Size defines the file storage size.", + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true, + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + }, + "storageClassName": { + "default": "default", + "description": "StorageClassName defines the file storage class name.", + "type": "string", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + }, + "memStorage": { + "default": { + "enabled": true, + "size": "1Gi" + }, + "description": "MemStorage defines configurations to memory storage in NATS JetStream.", + "properties": { + "enabled": { + "default": true, + "description": "Enabled allows the enablement of memory storage.", + "type": "boolean" + }, + "size": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "default": "1Gi", + "description": "Size defines the mem.", + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "can only be enabled if size is not 0", + "rule": "!self.enabled || self.size != 0" + } + ] + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self.fileStorage == oldSelf.fileStorage" + } + ] + }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "description": "Labels allows to add Labels to NATS.", + "type": "object" + }, + "logging": { + "default": { + "debug": false, + "trace": false + }, + "description": "JetStream defines configurations that are specific to NATS logging in NATS.", + "properties": { + "debug": { + "default": false, + "description": "Debug allows debug logging.", + "type": "boolean" + }, + "trace": { + "default": false, + "description": "Trace allows trace logging.", + "type": "boolean" + } + }, + "type": "object" + }, + "resources": { + "default": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + }, + "description": "Resources defines resources for NATS.", + "properties": { + "claims": { + "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.", + "items": { + "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.", + "properties": { + "name": { + "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.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" + }, + "limits": { + "additionalProperties": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + }, + "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "type": "object" + }, + "requests": { + "additionalProperties": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + }, + "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/", + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "status": { + "description": "NATSStatus defines the observed state of NATS.", + "properties": { + "conditions": { + "items": { + "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 }", + "properties": { + "lastTransitionTime": { + "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.", + "format": "date-time", + "type": "string" + }, + "message": { + "description": "message is a human readable message indicating details about the transition. This may be an empty string.", + "maxLength": 32768, + "type": "string" + }, + "observedGeneration": { + "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.", + "format": "int64", + "minimum": 0, + "type": "integer" + }, + "reason": { + "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.", + "maxLength": 1024, + "minLength": 1, + "pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$", + "type": "string" + }, + "status": { + "description": "status of the condition, one of True, False, Unknown.", + "enum": [ + "True", + "False", + "Unknown" + ], + "type": "string" + }, + "type": { + "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)", + "maxLength": 316, + "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])$", + "type": "string" + } + }, + "required": [ + "lastTransitionTime", + "message", + "reason", + "status", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "state": { + "type": "string" + }, + "url": { + "type": "string" + } + }, + "required": [ + "state" + ], + "type": "object" + } + }, + "type": "object" + } + }, + "served": true, + "storage": true, + "subresources": { + "status": {} + } + } + ] + } + }, + { + "apiVersion": "v1", + "kind": "ServiceAccount", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager", + "namespace": "kyma-system" + } + }, + { + "apiVersion": "rbac.authorization.k8s.io/v1", + "kind": "ClusterRole", + "metadata": { + "creationTimestamp": null, + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-role" + }, + "rules": [ + { + "apiGroups": [ + "" + ], + "resources": [ + "configmaps" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats-config" + ], + "resources": [ + "configmaps" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "events" + ], + "verbs": [ + "create", + "patch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "persistentvolumeclaims" + ], + "verbs": [ + "delete", + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "secrets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats-secret" + ], + "resources": [ + "secrets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "services" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "services" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "apiextensions.k8s.io" + ], + "resources": [ + "customresourcedefinitions" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "apps" + ], + "resources": [ + "statefulsets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "apps" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "statefulsets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "networking.istio.io" + ], + "resources": [ + "destinationrules" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "networking.istio.io" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "destinationrules" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats/finalizers" + ], + "verbs": [ + "update" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats/status" + ], + "verbs": [ + "get", + "patch", + "update" + ] + }, + { + "apiGroups": [ + "policy" + ], + "resources": [ + "poddisruptionbudgets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "policy" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "poddisruptionbudgets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + } + ] + }, + { + "apiVersion": "rbac.authorization.k8s.io/v1", + "kind": "ClusterRoleBinding", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-rolebinding" + }, + "roleRef": { + "apiGroup": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "name": "nats-manager-role" + }, + "subjects": [ + { + "kind": "ServiceAccount", + "name": "nats-manager", + "namespace": "kyma-system" + } + ] + }, + { + "apiVersion": "v1", + "data": { + "details": "header:\n - name: State\n source: status.state\n widget: Badge\n\nbody:\n - name: Conditions\n source: status.conditions\n widget: Table\n children:\n - source: type\n name: Type\n - source: status\n name: Status\n widget: Badge\n highlights:\n positive:\n - 'True'\n negative:\n - 'False'\n - source: reason\n name: Reason\n - source: message\n name: Message\n - source: '$readableTimestamp(lastTransitionTime)'\n name: Last transition\n sort: true\n - name: Events\n widget: EventList\n filter: '$matchEvents($$, $root.kind, $root.metadata.name)'\n defaultType: information\n", + "form": "", + "general": "resource:\n kind: NATS\n group: operator.kyma-project.io\n version: v1alpha1\nurlPath: nats\ncategory: Kyma\nname: NATS\nscope: namespace\nfeatures:\n actions:\n disableCreate: false\n disableDelete: false\ndescription: >-\n {{[NATS CR](https://github.com/kyma-project/nats-manager/blob/main/config/samples/default.yaml)}}\n specifies NATS module.\n", + "list": "- name: State\n source: status.state\n widget: Badge\n highlights:\n positive:\n - 'Ready'\n" + }, + "kind": "ConfigMap", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "busola.io/extension": "resource", + "busola.io/extension-version": "0.5", + "control-plane": "nats-manager" + }, + "name": "nats-operator.kyma-project.io", + "namespace": "kyma-system" + } + }, + { + "apiVersion": "scheduling.k8s.io/v1", + "description": "Scheduling priority of the NATS-Manager module. Must not be blocked by unschedulable user workloads.", + "globalDefault": false, + "kind": "PriorityClass", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-priority-class" + }, + "value": 2000000 + }, + { + "apiVersion": "apps/v1", + "kind": "Deployment", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager", + "namespace": "kyma-system" + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "control-plane": "manager" + } + }, + "template": { + "metadata": { + "annotations": { + "kubectl.kubernetes.io/default-container": "manager" + }, + "labels": { + "control-plane": "manager" + } + }, + "spec": { + "containers": [ + { + "command": [ + "/manager" + ], + "env": [ + { + "name": "LOG_LEVEL", + "value": "INFO" + }, + { + "name": "NATS_CHART_DIR", + "value": "/resources/nats" + }, + { + "name": "NATS_CR_NAME", + "value": "eventing-nats" + }, + { + "name": "NATS_CR_NAMESPACE", + "value": "kyma-system" + } + ], + "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "imagePullPolicy": "Always", + "livenessProbe": { + "httpGet": { + "path": "/healthz", + "port": 8081 + }, + "initialDelaySeconds": 15, + "periodSeconds": 20 + }, + "name": "manager", + "readinessProbe": { + "httpGet": { + "path": "/readyz", + "port": 8081 + }, + "initialDelaySeconds": 5, + "periodSeconds": 10 + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "384Mi" + }, + "requests": { + "cpu": "10m", + "memory": "64Mi" + } + }, + "securityContext": { + "allowPrivilegeEscalation": false, + "capabilities": { + "drop": [ + "ALL" + ] + } + } + } + ], + "priorityClassName": "nats-manager-priority-class", + "securityContext": { + "fsGroup": 10001, + "runAsGroup": 10001, + "runAsNonRoot": true, + "runAsUser": 10001, + "seccompProfile": { + "type": "RuntimeDefault" + } + }, + "serviceAccountName": "nats-manager", + "terminationGracePeriodSeconds": 10 + } + } + } + } + ], + "cr": { + "apiVersion": "operator.kyma-project.io/v1alpha1", + "kind": "NATS", + "metadata": { + "name": "eventing-nats", + "namespace": "kyma-system" + }, + "spec": { + "cluster": { + "size": 3 + }, + "jetStream": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "logging": { + "debug": false, + "trace": false + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + } + } + }, + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats", "deploymentYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-manager.yaml", - "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-default-cr.yaml", + "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-default-cr.yaml" + }, + { + "version": "1.1.0", + "deploymentYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.1.0/nats-manager.yaml", + "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.1.0/nats-default-cr.yaml", "cr": { "apiVersion": "operator.kyma-project.io/v1alpha1", "kind": "NATS", @@ -19018,7 +19974,7 @@ export default [ "value": "kyma-system" } ], - "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.1.0", "imagePullPolicy": "Always", "livenessProbe": { "httpGet": { @@ -19075,14 +20031,8 @@ export default [ } ], "managerPath": "/apis/apps/v1/namespaces/kyma-system/deployments/nats-manager", - "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", - "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats", - "channels": [ - "fast", - "regular" - ], - "documentation": "https://kyma-project.io/#/nats-manager/user/README", - "repository": "https://github.com/kyma-project/nats-manager.git" + "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.1.0", + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats" }, { "version": "v1.0.2", @@ -28649,7 +29599,6 @@ export default [ { "version": "1.4.2", "channels": [ - "fast", "regular" ], "documentation": "https://help.sap.com/docs/connectivity/sap-btp-connectivity-cf/transparent-proxy-in-kyma-environment", @@ -28683,6 +29632,43 @@ export default [ } }, "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/sap-transp-proxy-system/transparentproxies/transparent-proxy" + }, + { + "version": "1.4.3", + "channels": [ + "fast" + ], + "documentation": "https://help.sap.com/docs/connectivity/sap-btp-connectivity-cf/transparent-proxy-in-kyma-environment", + "repository": "https://github.wdf.sap.corp/transparent-proxy/sap-transp-proxy-operator.git", + "managerPath": "/apis/apps/v1/namespaces/sap-transp-proxy-system/deployments/sap-transp-proxy-operator", + "managerImage": "sapse/sap-transp-proxy-operator:1.4.3", + "cr": { + "apiVersion": "operator.kyma-project.io/v1alpha1", + "kind": "TransparentProxy", + "metadata": { + "name": "transparent-proxy", + "namespace": "sap-transp-proxy-system" + }, + "spec": { + "config": { + "security": { + "communication": { + "internal": { + "encryptionEnabled": true + } + } + }, + "integration": { + "serviceMesh": { + "istio": { + "istio-injection": "enabled" + } + } + } + } + } + }, + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/sap-transp-proxy-system/transparentproxies/transparent-proxy" } ] }, diff --git a/model.json b/model.json index d8f4aa0..d950e34 100644 --- a/model.json +++ b/model.json @@ -18130,8 +18130,964 @@ "versions": [ { "version": "1.0.3", + "channels": [ + "fast", + "regular" + ], + "documentation": "https://kyma-project.io/#/nats-manager/user/README", + "repository": "https://github.com/kyma-project/nats-manager.git", + "managerPath": "/apis/apps/v1/namespaces/kyma-system/deployments/nats-manager", + "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "resources": [ + { + "apiVersion": "apiextensions.k8s.io/v1", + "kind": "CustomResourceDefinition", + "metadata": { + "annotations": { + "controller-gen.kubebuilder.io/version": "v0.11.1" + }, + "creationTimestamp": null, + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats.operator.kyma-project.io" + }, + "spec": { + "group": "operator.kyma-project.io", + "names": { + "kind": "NATS", + "listKind": "NATSList", + "plural": "nats", + "singular": "nats" + }, + "scope": "Namespaced", + "versions": [ + { + "additionalPrinterColumns": [ + { + "description": "State of NATS deployment", + "jsonPath": ".status.state", + "name": "State", + "type": "string" + }, + { + "description": "Age of the resource", + "jsonPath": ".metadata.creationTimestamp", + "name": "Age", + "type": "date" + } + ], + "name": "v1alpha1", + "schema": { + "openAPIV3Schema": { + "description": "NATS is the Schema for the NATS API.", + "properties": { + "apiVersion": { + "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources", + "type": "string" + }, + "kind": { + "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds", + "type": "string" + }, + "metadata": { + "type": "object" + }, + "spec": { + "default": { + "cluster": { + "size": 3 + }, + "jetStream": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "logging": { + "debug": false, + "trace": false + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + } + }, + "description": "NATSSpec defines the desired state of NATS.", + "properties": { + "annotations": { + "additionalProperties": { + "type": "string" + }, + "description": "Annotations allows to add annotations to NATS.", + "type": "object" + }, + "cluster": { + "default": { + "size": 3 + }, + "description": "Cluster defines configurations that are specific to NATS clusters.", + "properties": { + "size": { + "default": 3, + "description": "Size of a NATS cluster, i.e. number of NATS nodes.", + "minimum": 1, + "type": "integer", + "x-kubernetes-validations": [ + { + "message": "size only accepts odd numbers", + "rule": "(self%2) != 0" + }, + { + "message": "cannot be set to 1 if size was greater than 1", + "rule": "!(oldSelf > 1 && self == 1)" + } + ] + } + }, + "type": "object" + }, + "jetStream": { + "default": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "description": "JetStream defines configurations that are specific to NATS JetStream.", + "properties": { + "fileStorage": { + "default": { + "size": "1Gi", + "storageClassName": "default" + }, + "description": "FileStorage defines configurations to file storage in NATS JetStream.", + "properties": { + "size": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "default": "1Gi", + "description": "Size defines the file storage size.", + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true, + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + }, + "storageClassName": { + "default": "default", + "description": "StorageClassName defines the file storage class name.", + "type": "string", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self == oldSelf" + } + ] + }, + "memStorage": { + "default": { + "enabled": true, + "size": "1Gi" + }, + "description": "MemStorage defines configurations to memory storage in NATS JetStream.", + "properties": { + "enabled": { + "default": true, + "description": "Enabled allows the enablement of memory storage.", + "type": "boolean" + }, + "size": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "default": "1Gi", + "description": "Size defines the mem.", + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "can only be enabled if size is not 0", + "rule": "!self.enabled || self.size != 0" + } + ] + } + }, + "type": "object", + "x-kubernetes-validations": [ + { + "message": "fileStorage is immutable once it was set", + "rule": "self.fileStorage == oldSelf.fileStorage" + } + ] + }, + "labels": { + "additionalProperties": { + "type": "string" + }, + "description": "Labels allows to add Labels to NATS.", + "type": "object" + }, + "logging": { + "default": { + "debug": false, + "trace": false + }, + "description": "JetStream defines configurations that are specific to NATS logging in NATS.", + "properties": { + "debug": { + "default": false, + "description": "Debug allows debug logging.", + "type": "boolean" + }, + "trace": { + "default": false, + "description": "Trace allows trace logging.", + "type": "boolean" + } + }, + "type": "object" + }, + "resources": { + "default": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + }, + "description": "Resources defines resources for NATS.", + "properties": { + "claims": { + "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.", + "items": { + "description": "ResourceClaim references one entry in PodSpec.ResourceClaims.", + "properties": { + "name": { + "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.", + "type": "string" + } + }, + "required": [ + "name" + ], + "type": "object" + }, + "type": "array", + "x-kubernetes-list-map-keys": [ + "name" + ], + "x-kubernetes-list-type": "map" + }, + "limits": { + "additionalProperties": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + }, + "description": "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/", + "type": "object" + }, + "requests": { + "additionalProperties": { + "anyOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ], + "pattern": "^(\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\\+|-)?(([0-9]+(\\.[0-9]*)?)|(\\.[0-9]+))))?$", + "x-kubernetes-int-or-string": true + }, + "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/", + "type": "object" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "status": { + "description": "NATSStatus defines the observed state of NATS.", + "properties": { + "conditions": { + "items": { + "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 }", + "properties": { + "lastTransitionTime": { + "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.", + "format": "date-time", + "type": "string" + }, + "message": { + "description": "message is a human readable message indicating details about the transition. This may be an empty string.", + "maxLength": 32768, + "type": "string" + }, + "observedGeneration": { + "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.", + "format": "int64", + "minimum": 0, + "type": "integer" + }, + "reason": { + "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.", + "maxLength": 1024, + "minLength": 1, + "pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$", + "type": "string" + }, + "status": { + "description": "status of the condition, one of True, False, Unknown.", + "enum": [ + "True", + "False", + "Unknown" + ], + "type": "string" + }, + "type": { + "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)", + "maxLength": 316, + "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])$", + "type": "string" + } + }, + "required": [ + "lastTransitionTime", + "message", + "reason", + "status", + "type" + ], + "type": "object" + }, + "type": "array" + }, + "state": { + "type": "string" + }, + "url": { + "type": "string" + } + }, + "required": [ + "state" + ], + "type": "object" + } + }, + "type": "object" + } + }, + "served": true, + "storage": true, + "subresources": { + "status": {} + } + } + ] + } + }, + { + "apiVersion": "v1", + "kind": "ServiceAccount", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager", + "namespace": "kyma-system" + } + }, + { + "apiVersion": "rbac.authorization.k8s.io/v1", + "kind": "ClusterRole", + "metadata": { + "creationTimestamp": null, + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-role" + }, + "rules": [ + { + "apiGroups": [ + "" + ], + "resources": [ + "configmaps" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats-config" + ], + "resources": [ + "configmaps" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "events" + ], + "verbs": [ + "create", + "patch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "persistentvolumeclaims" + ], + "verbs": [ + "delete", + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "secrets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats-secret" + ], + "resources": [ + "secrets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resources": [ + "services" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "services" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "apiextensions.k8s.io" + ], + "resources": [ + "customresourcedefinitions" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "apps" + ], + "resources": [ + "statefulsets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "apps" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "statefulsets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "networking.istio.io" + ], + "resources": [ + "destinationrules" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "networking.istio.io" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "destinationrules" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats/finalizers" + ], + "verbs": [ + "update" + ] + }, + { + "apiGroups": [ + "operator.kyma-project.io" + ], + "resources": [ + "nats/status" + ], + "verbs": [ + "get", + "patch", + "update" + ] + }, + { + "apiGroups": [ + "policy" + ], + "resources": [ + "poddisruptionbudgets" + ], + "verbs": [ + "list", + "watch" + ] + }, + { + "apiGroups": [ + "policy" + ], + "resourceNames": [ + "eventing-nats" + ], + "resources": [ + "poddisruptionbudgets" + ], + "verbs": [ + "create", + "delete", + "get", + "list", + "patch", + "update", + "watch" + ] + } + ] + }, + { + "apiVersion": "rbac.authorization.k8s.io/v1", + "kind": "ClusterRoleBinding", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-rolebinding" + }, + "roleRef": { + "apiGroup": "rbac.authorization.k8s.io", + "kind": "ClusterRole", + "name": "nats-manager-role" + }, + "subjects": [ + { + "kind": "ServiceAccount", + "name": "nats-manager", + "namespace": "kyma-system" + } + ] + }, + { + "apiVersion": "v1", + "data": { + "details": "header:\n - name: State\n source: status.state\n widget: Badge\n\nbody:\n - name: Conditions\n source: status.conditions\n widget: Table\n children:\n - source: type\n name: Type\n - source: status\n name: Status\n widget: Badge\n highlights:\n positive:\n - 'True'\n negative:\n - 'False'\n - source: reason\n name: Reason\n - source: message\n name: Message\n - source: '$readableTimestamp(lastTransitionTime)'\n name: Last transition\n sort: true\n - name: Events\n widget: EventList\n filter: '$matchEvents($$, $root.kind, $root.metadata.name)'\n defaultType: information\n", + "form": "", + "general": "resource:\n kind: NATS\n group: operator.kyma-project.io\n version: v1alpha1\nurlPath: nats\ncategory: Kyma\nname: NATS\nscope: namespace\nfeatures:\n actions:\n disableCreate: false\n disableDelete: false\ndescription: >-\n {{[NATS CR](https://github.com/kyma-project/nats-manager/blob/main/config/samples/default.yaml)}}\n specifies NATS module.\n", + "list": "- name: State\n source: status.state\n widget: Badge\n highlights:\n positive:\n - 'Ready'\n" + }, + "kind": "ConfigMap", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "busola.io/extension": "resource", + "busola.io/extension-version": "0.5", + "control-plane": "nats-manager" + }, + "name": "nats-operator.kyma-project.io", + "namespace": "kyma-system" + } + }, + { + "apiVersion": "scheduling.k8s.io/v1", + "description": "Scheduling priority of the NATS-Manager module. Must not be blocked by unschedulable user workloads.", + "globalDefault": false, + "kind": "PriorityClass", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager-priority-class" + }, + "value": 2000000 + }, + { + "apiVersion": "apps/v1", + "kind": "Deployment", + "metadata": { + "labels": { + "app.kubernetes.io/component": "nats-manager", + "app.kubernetes.io/created-by": "nats-manager", + "app.kubernetes.io/instance": "nats-manager", + "app.kubernetes.io/managed-by": "kustomize", + "app.kubernetes.io/name": "nats-manager", + "app.kubernetes.io/part-of": "Kyma", + "control-plane": "nats-manager" + }, + "name": "nats-manager", + "namespace": "kyma-system" + }, + "spec": { + "replicas": 1, + "selector": { + "matchLabels": { + "control-plane": "manager" + } + }, + "template": { + "metadata": { + "annotations": { + "kubectl.kubernetes.io/default-container": "manager" + }, + "labels": { + "control-plane": "manager" + } + }, + "spec": { + "containers": [ + { + "command": [ + "/manager" + ], + "env": [ + { + "name": "LOG_LEVEL", + "value": "INFO" + }, + { + "name": "NATS_CHART_DIR", + "value": "/resources/nats" + }, + { + "name": "NATS_CR_NAME", + "value": "eventing-nats" + }, + { + "name": "NATS_CR_NAMESPACE", + "value": "kyma-system" + } + ], + "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "imagePullPolicy": "Always", + "livenessProbe": { + "httpGet": { + "path": "/healthz", + "port": 8081 + }, + "initialDelaySeconds": 15, + "periodSeconds": 20 + }, + "name": "manager", + "readinessProbe": { + "httpGet": { + "path": "/readyz", + "port": 8081 + }, + "initialDelaySeconds": 5, + "periodSeconds": 10 + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "384Mi" + }, + "requests": { + "cpu": "10m", + "memory": "64Mi" + } + }, + "securityContext": { + "allowPrivilegeEscalation": false, + "capabilities": { + "drop": [ + "ALL" + ] + } + } + } + ], + "priorityClassName": "nats-manager-priority-class", + "securityContext": { + "fsGroup": 10001, + "runAsGroup": 10001, + "runAsNonRoot": true, + "runAsUser": 10001, + "seccompProfile": { + "type": "RuntimeDefault" + } + }, + "serviceAccountName": "nats-manager", + "terminationGracePeriodSeconds": 10 + } + } + } + } + ], + "cr": { + "apiVersion": "operator.kyma-project.io/v1alpha1", + "kind": "NATS", + "metadata": { + "name": "eventing-nats", + "namespace": "kyma-system" + }, + "spec": { + "cluster": { + "size": 3 + }, + "jetStream": { + "fileStorage": { + "size": "1Gi", + "storageClassName": "default" + }, + "memStorage": { + "enabled": true, + "size": "1Gi" + } + }, + "logging": { + "debug": false, + "trace": false + }, + "resources": { + "limits": { + "cpu": "500m", + "memory": "1Gi" + }, + "requests": { + "cpu": "40m", + "memory": "64Mi" + } + } + } + }, + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats", "deploymentYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-manager.yaml", - "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-default-cr.yaml", + "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.0.3/nats-default-cr.yaml" + }, + { + "version": "1.1.0", + "deploymentYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.1.0/nats-manager.yaml", + "crYaml": "https://github.com/kyma-project/nats-manager/releases/download/1.1.0/nats-default-cr.yaml", "cr": { "apiVersion": "operator.kyma-project.io/v1alpha1", "kind": "NATS", @@ -19018,7 +19974,7 @@ "value": "kyma-system" } ], - "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", + "image": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.1.0", "imagePullPolicy": "Always", "livenessProbe": { "httpGet": { @@ -19075,14 +20031,8 @@ } ], "managerPath": "/apis/apps/v1/namespaces/kyma-system/deployments/nats-manager", - "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.0.3", - "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats", - "channels": [ - "fast", - "regular" - ], - "documentation": "https://kyma-project.io/#/nats-manager/user/README", - "repository": "https://github.com/kyma-project/nats-manager.git" + "managerImage": "europe-docker.pkg.dev/kyma-project/prod/nats-manager:1.1.0", + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/kyma-system/nats/eventing-nats" }, { "version": "v1.0.2", @@ -28649,7 +29599,6 @@ { "version": "1.4.2", "channels": [ - "fast", "regular" ], "documentation": "https://help.sap.com/docs/connectivity/sap-btp-connectivity-cf/transparent-proxy-in-kyma-environment", @@ -28683,6 +29632,43 @@ } }, "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/sap-transp-proxy-system/transparentproxies/transparent-proxy" + }, + { + "version": "1.4.3", + "channels": [ + "fast" + ], + "documentation": "https://help.sap.com/docs/connectivity/sap-btp-connectivity-cf/transparent-proxy-in-kyma-environment", + "repository": "https://github.wdf.sap.corp/transparent-proxy/sap-transp-proxy-operator.git", + "managerPath": "/apis/apps/v1/namespaces/sap-transp-proxy-system/deployments/sap-transp-proxy-operator", + "managerImage": "sapse/sap-transp-proxy-operator:1.4.3", + "cr": { + "apiVersion": "operator.kyma-project.io/v1alpha1", + "kind": "TransparentProxy", + "metadata": { + "name": "transparent-proxy", + "namespace": "sap-transp-proxy-system" + }, + "spec": { + "config": { + "security": { + "communication": { + "internal": { + "encryptionEnabled": true + } + } + }, + "integration": { + "serviceMesh": { + "istio": { + "istio-injection": "enabled" + } + } + } + } + } + }, + "crPath": "/apis/operator.kyma-project.io/v1alpha1/namespaces/sap-transp-proxy-system/transparentproxies/transparent-proxy" } ] },