@@ -3088,6 +3088,22 @@ spec:
30883088 x-kubernetes-map-type: atomic
30893089 type: array
30903090 type: object
3091+ logLevel:
3092+ description: 'Log level (fatal, critical, error, warning,
3093+ notice, information, debug, trace, test, or none; default:
3094+ warning).'
3095+ enum:
3096+ - none
3097+ - fatal
3098+ - critical
3099+ - error
3100+ - warning
3101+ - notice
3102+ - information
3103+ - debug
3104+ - trace
3105+ - test
3106+ type: string
30913107 nodeSelector:
30923108 additionalProperties:
30933109 type: string
@@ -4977,6 +4993,13 @@ spec:
49774993 pattern: ^https?://.+$
49784994 type: string
49794995 type: object
4996+ grpc:
4997+ description: gRPC settings.
4998+ properties:
4999+ disabled:
5000+ description: Disables gRPC server.
5001+ type: boolean
5002+ type: object
49805003 ingress:
49815004 description: Ingress configuration for Coroot.
49825005 properties:
@@ -8003,12 +8026,20 @@ spec:
80038026 type: string
80048027 description: Annotations for the service.
80058028 type: object
8029+ grpcNodePort:
8030+ description: gRPC nodePort (if type is NodePort).
8031+ format: int32
8032+ type: integer
8033+ grpcPort:
8034+ description: gRPC port (default 4317).
8035+ format: int32
8036+ type: integer
80068037 nodePort:
8007- description: NodePort number (if type is NodePort).
8038+ description: Service nodePort (if type is NodePort).
80088039 format: int32
80098040 type: integer
80108041 port:
8011- description: Service port number .
8042+ description: Service port (default 8080) .
80128043 format: int32
80138044 type: integer
80148045 type:
@@ -8079,6 +8110,61 @@ spec:
80798110 pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
80808111 x-kubernetes-int-or-string: true
80818112 type: object
8113+ tls:
8114+ description: TLS settings (enables TLS for gRPC if defined).
8115+ properties:
8116+ certSecret:
8117+ description: Secret containing TLS certificate.
8118+ properties:
8119+ key:
8120+ description: The key of the secret to select from. Must be
8121+ a valid secret key.
8122+ type: string
8123+ name:
8124+ default: ""
8125+ description: |-
8126+ Name of the referent.
8127+ This field is effectively required, but due to backwards compatibility is
8128+ allowed to be empty. Instances of this type with an empty value here are
8129+ almost certainly wrong.
8130+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
8131+ type: string
8132+ optional:
8133+ description: Specify whether the Secret or its key must be
8134+ defined
8135+ type: boolean
8136+ required:
8137+ - key
8138+ type: object
8139+ x-kubernetes-map-type: atomic
8140+ keySecret:
8141+ description: Secret containing TLS private key.
8142+ properties:
8143+ key:
8144+ description: The key of the secret to select from. Must be
8145+ a valid secret key.
8146+ type: string
8147+ name:
8148+ default: ""
8149+ description: |-
8150+ Name of the referent.
8151+ This field is effectively required, but due to backwards compatibility is
8152+ allowed to be empty. Instances of this type with an empty value here are
8153+ almost certainly wrong.
8154+ More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
8155+ type: string
8156+ optional:
8157+ description: Specify whether the Secret or its key must be
8158+ defined
8159+ type: boolean
8160+ required:
8161+ - key
8162+ type: object
8163+ x-kubernetes-map-type: atomic
8164+ required:
8165+ - certSecret
8166+ - keySecret
8167+ type: object
80828168 tolerations:
80838169 items:
80848170 description: |-
0 commit comments