AlertmanagerConfig

Scope: Namespaced
Version: v1alpha1

AlertmanagerConfig defines a namespaced AlertmanagerConfig to be aggregated across multiple namespaces configuring one Alertmanager cluster.

  • apiVersion
    string

    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

  • kind
    string

    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

  • metadata
    object
  • spec
    object

    Required value

    AlertmanagerConfigSpec is a specification of the desired behavior of the Alertmanager configuration. By definition, the Alertmanager configuration only applies to alerts for which the namespace label is equal to the namespace of the AlertmanagerConfig resource.

    • spec.inhibitRules
      array of objects

      List of inhibition rules. The rules will only apply to alerts matching the resource’s namespace.

      InhibitRule defines an inhibition rule that allows to mute alerts when other alerts are already firing. See https://prometheus.io/docs/alerting/latest/configuration/#inhibit_rule

      • spec.inhibitRules.equal
        array of strings

        Labels that must have an equal value in the source and target alert for the inhibition to take effect.

      • spec.inhibitRules.sourceMatch
        array of objects

        Matchers for which one or more alerts have to exist for the inhibition to take effect. The operator enforces that the alert matches the resource’s namespace.

        Matcher defines how to match on alert’s labels.

        • spec.inhibitRules.sourceMatch.matchType
          string

          Match operation available with AlertManager >= v0.22.0 and takes precedence over Regex (deprecated) if non-empty.

          Allowed values: !=, =, =~, !~

        • spec.inhibitRules.sourceMatch.name
          string

          Required value

          Label to match.

        • spec.inhibitRules.sourceMatch.regex
          boolean

          Whether to match on equality (false) or regular-expression (true). Deprecated as of AlertManager >= v0.22.0 where a user should use MatchType instead.

        • spec.inhibitRules.sourceMatch.value
          string

          Label value to match.

      • spec.inhibitRules.targetMatch
        array of objects

        Matchers that have to be fulfilled in the alerts to be muted. The operator enforces that the alert matches the resource’s namespace.

        Matcher defines how to match on alert’s labels.

        • spec.inhibitRules.targetMatch.matchType
          string

          Match operation available with AlertManager >= v0.22.0 and takes precedence over Regex (deprecated) if non-empty.

          Allowed values: !=, =, =~, !~

        • spec.inhibitRules.targetMatch.name
          string

          Required value

          Label to match.

        • spec.inhibitRules.targetMatch.regex
          boolean

          Whether to match on equality (false) or regular-expression (true). Deprecated as of AlertManager >= v0.22.0 where a user should use MatchType instead.

        • spec.inhibitRules.targetMatch.value
          string

          Label value to match.

    • spec.muteTimeIntervals
      array of objects

      List of MuteTimeInterval specifying when the routes should be muted.

      MuteTimeInterval specifies the periods in time when notifications will be muted

      • spec.muteTimeIntervals.name
        string

        Name of the time interval

      • spec.muteTimeIntervals.timeIntervals
        array of objects

        TimeIntervals is a list of TimeInterval

        TimeInterval describes intervals of time

        • spec.muteTimeIntervals.timeIntervals.daysOfMonth
          array of objects

          DaysOfMonth is a list of DayOfMonthRange

          DayOfMonthRange is an inclusive range of days of the month beginning at 1

          • spec.muteTimeIntervals.timeIntervals.daysOfMonth.end
            integer

            End of the inclusive range

            Allowed values: -31 <= X <= 31

          • spec.muteTimeIntervals.timeIntervals.daysOfMonth.start
            integer

            Start of the inclusive range

            Allowed values: -31 <= X <= 31

        • spec.muteTimeIntervals.timeIntervals.months
          array of strings

          Months is a list of MonthRange

          • Element of the array
            string

            MonthRange is an inclusive range of months of the year beginning in January Months can be specified by name (e.g ‘January’) by numerical month (e.g ‘1’) or as an inclusive range (e.g ‘January:March’, ‘1:3’, ‘1:March’)

            Pattern: ^((?i)january|february|march|april|may|june|july|august|september|october|november|december|[1-12])(?:((:((?i)january|february|march|april|may|june|july|august|september|october|november|december|[1-12]))$)|$)

        • spec.muteTimeIntervals.timeIntervals.times
          array of objects

          Times is a list of TimeRange

          TimeRange defines a start and end time in 24hr format

          • spec.muteTimeIntervals.timeIntervals.times.endTime
            string

            EndTime is the end time in 24hr format.

            Pattern: ^((([01][0-9])|(2[0-3])):[0-5][0-9])$|(^24:00$)

          • spec.muteTimeIntervals.timeIntervals.times.startTime
            string

            StartTime is the start time in 24hr format.

            Pattern: ^((([01][0-9])|(2[0-3])):[0-5][0-9])$|(^24:00$)

        • spec.muteTimeIntervals.timeIntervals.weekdays
          array of strings

          Weekdays is a list of WeekdayRange

          • Element of the array
            string

            WeekdayRange is an inclusive range of days of the week beginning on Sunday Days can be specified by name (e.g ‘Sunday’) or as an inclusive range (e.g ‘Monday:Friday’)

            Pattern: ^((?i)sun|mon|tues|wednes|thurs|fri|satur)day(?:((:(sun|mon|tues|wednes|thurs|fri|satur)day)$)|$)

        • spec.muteTimeIntervals.timeIntervals.years
          array of strings

          Years is a list of YearRange

          • Element of the array
            string

            YearRange is an inclusive range of years

            Pattern: ^2\d{3}(?::2\d{3}|$)

    • spec.receivers
      array of objects

      List of receivers.

      Receiver defines one or more notification integrations.

      • spec.receivers.discordConfigs
        array of objects

        List of Discord configurations.

        DiscordConfig configures notifications via Discord. See https://prometheus.io/docs/alerting/latest/configuration/#discord_config

        • spec.receivers.discordConfigs.apiURL
          object

          Required value

          The secret’s key that contains the Discord webhook URL. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.discordConfigs.apiURL.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.discordConfigs.apiURL.name
            string

            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?

          • spec.receivers.discordConfigs.apiURL.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.discordConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.discordConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.discordConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.discordConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.discordConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.discordConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.discordConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.discordConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.discordConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.discordConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.discordConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.discordConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.discordConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.discordConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.discordConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.discordConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.discordConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.discordConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.discordConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.discordConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.discordConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.discordConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.discordConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.discordConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.discordConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.discordConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.discordConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.discordConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.discordConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.discordConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.discordConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.discordConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.discordConfigs.message
          string

          The template of the message’s body.

        • spec.receivers.discordConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.discordConfigs.title
          string

          The template of the message’s title.

      • spec.receivers.emailConfigs
        array of objects

        List of Email configurations.

        EmailConfig configures notifications via Email.

        • spec.receivers.emailConfigs.authIdentity
          string

          The identity to use for authentication.

        • spec.receivers.emailConfigs.authPassword
          object

          The secret’s key that contains the password to use for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.emailConfigs.authPassword.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.emailConfigs.authPassword.name
            string

            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?

          • spec.receivers.emailConfigs.authPassword.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.emailConfigs.authSecret
          object

          The secret’s key that contains the CRAM-MD5 secret. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.emailConfigs.authSecret.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.emailConfigs.authSecret.name
            string

            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?

          • spec.receivers.emailConfigs.authSecret.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.emailConfigs.authUsername
          string

          The username to use for authentication.

        • spec.receivers.emailConfigs.from
          string

          The sender address.

        • spec.receivers.emailConfigs.headers
          array of objects

          Further headers email header key/value pairs. Overrides any headers previously set by the notification implementation.

          KeyValue defines a (key, value) tuple.

          • spec.receivers.emailConfigs.headers.key
            string

            Required value

            Key of the tuple.

          • spec.receivers.emailConfigs.headers.value
            string

            Required value

            Value of the tuple.

        • spec.receivers.emailConfigs.hello
          string

          The hostname to identify to the SMTP server.

        • spec.receivers.emailConfigs.html
          string

          The HTML body of the email notification.

        • spec.receivers.emailConfigs.requireTLS
          boolean

          The SMTP TLS requirement. Note that Go does not support unencrypted connections to remote SMTP endpoints.

        • spec.receivers.emailConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.emailConfigs.smarthost
          string

          The SMTP host and port through which emails are sent. E.g. example.com:25

        • spec.receivers.emailConfigs.text
          string

          The text body of the email notification.

        • spec.receivers.emailConfigs.tlsConfig
          object

          TLS configuration

          • spec.receivers.emailConfigs.tlsConfig.ca
            object

            Certificate authority used when verifying server certificates.

            • spec.receivers.emailConfigs.tlsConfig.ca.configMap
              object

              ConfigMap containing data to use for the targets.

              • spec.receivers.emailConfigs.tlsConfig.ca.configMap.key
                string

                Required value

                The key to select.

              • spec.receivers.emailConfigs.tlsConfig.ca.configMap.name
                string

                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?

              • spec.receivers.emailConfigs.tlsConfig.ca.configMap.optional
                boolean

                Specify whether the ConfigMap or its key must be defined

            • spec.receivers.emailConfigs.tlsConfig.ca.secret
              object

              Secret containing data to use for the targets.

              • spec.receivers.emailConfigs.tlsConfig.ca.secret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.emailConfigs.tlsConfig.ca.secret.name
                string

                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?

              • spec.receivers.emailConfigs.tlsConfig.ca.secret.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.emailConfigs.tlsConfig.cert
            object

            Client certificate to present when doing client-authentication.

            • spec.receivers.emailConfigs.tlsConfig.cert.configMap
              object

              ConfigMap containing data to use for the targets.

              • spec.receivers.emailConfigs.tlsConfig.cert.configMap.key
                string

                Required value

                The key to select.

              • spec.receivers.emailConfigs.tlsConfig.cert.configMap.name
                string

                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?

              • spec.receivers.emailConfigs.tlsConfig.cert.configMap.optional
                boolean

                Specify whether the ConfigMap or its key must be defined

            • spec.receivers.emailConfigs.tlsConfig.cert.secret
              object

              Secret containing data to use for the targets.

              • spec.receivers.emailConfigs.tlsConfig.cert.secret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.emailConfigs.tlsConfig.cert.secret.name
                string

                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?

              • spec.receivers.emailConfigs.tlsConfig.cert.secret.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.emailConfigs.tlsConfig.insecureSkipVerify
            boolean

            Disable target certificate validation.

          • spec.receivers.emailConfigs.tlsConfig.keySecret
            object

            Secret containing the client key file for the targets.

            • spec.receivers.emailConfigs.tlsConfig.keySecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.emailConfigs.tlsConfig.keySecret.name
              string

              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?

            • spec.receivers.emailConfigs.tlsConfig.keySecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.emailConfigs.tlsConfig.serverName
            string

            Used to verify the hostname for the targets.

        • spec.receivers.emailConfigs.to
          string

          The email address to send notifications to.

      • spec.receivers.name
        string

        Required value

        Name of the receiver. Must be unique across all items from the list.

      • spec.receivers.opsgenieConfigs
        array of objects

        List of OpsGenie configurations.

        OpsGenieConfig configures notifications via OpsGenie. See https://prometheus.io/docs/alerting/latest/configuration/#opsgenie_config

        • spec.receivers.opsgenieConfigs.actions
          string

          Comma separated list of actions that will be available for the alert.

        • spec.receivers.opsgenieConfigs.apiKey
          object

          The secret’s key that contains the OpsGenie API key. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.opsgenieConfigs.apiKey.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.opsgenieConfigs.apiKey.name
            string

            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?

          • spec.receivers.opsgenieConfigs.apiKey.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.opsgenieConfigs.apiURL
          string

          The URL to send OpsGenie API requests to.

        • spec.receivers.opsgenieConfigs.description
          string

          Description of the incident.

        • spec.receivers.opsgenieConfigs.details
          array of objects

          A set of arbitrary key/value pairs that provide further detail about the incident.

          KeyValue defines a (key, value) tuple.

          • spec.receivers.opsgenieConfigs.details.key
            string

            Required value

            Key of the tuple.

          • spec.receivers.opsgenieConfigs.details.value
            string

            Required value

            Value of the tuple.

        • spec.receivers.opsgenieConfigs.entity
          string

          Optional field that can be used to specify which domain alert is related to.

        • spec.receivers.opsgenieConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.opsgenieConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.opsgenieConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.opsgenieConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.opsgenieConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.opsgenieConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.opsgenieConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.opsgenieConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.opsgenieConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.opsgenieConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.opsgenieConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.opsgenieConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.opsgenieConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.opsgenieConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.opsgenieConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.opsgenieConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.opsgenieConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.opsgenieConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.opsgenieConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.opsgenieConfigs.message
          string

          Alert text limited to 130 characters.

        • spec.receivers.opsgenieConfigs.note
          string

          Additional alert note.

        • spec.receivers.opsgenieConfigs.priority
          string

          Priority level of alert. Possible values are P1, P2, P3, P4, and P5.

        • spec.receivers.opsgenieConfigs.responders
          array of objects

          List of responders responsible for notifications.

          OpsGenieConfigResponder defines a responder to an incident. One of id, name or username has to be defined.

          • spec.receivers.opsgenieConfigs.responders.id
            string

            ID of the responder.

          • spec.receivers.opsgenieConfigs.responders.name
            string

            Name of the responder.

          • spec.receivers.opsgenieConfigs.responders.type
            string

            Required value

            Type of responder.

            Allowed values: team, teams, user, escalation, schedule

          • spec.receivers.opsgenieConfigs.responders.username
            string

            Username of the responder.

        • spec.receivers.opsgenieConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.opsgenieConfigs.source
          string

          Backlink to the sender of the notification.

        • spec.receivers.opsgenieConfigs.tags
          string

          Comma separated list of tags attached to the notifications.

        • spec.receivers.opsgenieConfigs.updateAlerts
          boolean

          Whether to update message and description of the alert in OpsGenie if it already exists By default, the alert is never updated in OpsGenie, the new message only appears in activity log.

      • spec.receivers.pagerdutyConfigs
        array of objects

        List of PagerDuty configurations.

        PagerDutyConfig configures notifications via PagerDuty. See https://prometheus.io/docs/alerting/latest/configuration/#pagerduty_config

        • spec.receivers.pagerdutyConfigs.class
          string

          The class/type of the event.

        • spec.receivers.pagerdutyConfigs.client
          string

          Client identification.

        • spec.receivers.pagerdutyConfigs.clientURL
          string

          Backlink to the sender of notification.

        • spec.receivers.pagerdutyConfigs.component
          string

          The part or component of the affected system that is broken.

        • spec.receivers.pagerdutyConfigs.description
          string

          Description of the incident.

        • spec.receivers.pagerdutyConfigs.details
          array of objects

          Arbitrary key/value pairs that provide further detail about the incident.

          KeyValue defines a (key, value) tuple.

          • spec.receivers.pagerdutyConfigs.details.key
            string

            Required value

            Key of the tuple.

          • spec.receivers.pagerdutyConfigs.details.value
            string

            Required value

            Value of the tuple.

        • spec.receivers.pagerdutyConfigs.group
          string

          A cluster or grouping of sources.

        • spec.receivers.pagerdutyConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.pagerdutyConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.pagerdutyConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.pagerdutyConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pagerdutyConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.pagerdutyConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.pagerdutyConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.pagerdutyConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.pagerdutyConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.pagerdutyConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.pagerdutyConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.pagerdutyConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.pagerdutyConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.pagerdutyConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.pagerdutyConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pagerdutyConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.pagerdutyConfigs.pagerDutyImageConfigs
          array of objects

          A list of image details to attach that provide further detail about an incident.

          PagerDutyImageConfig attaches images to an incident

          • spec.receivers.pagerdutyConfigs.pagerDutyImageConfigs.alt
            string

            Alt is the optional alternative text for the image.

          • spec.receivers.pagerdutyConfigs.pagerDutyImageConfigs.href
            string

            Optional URL; makes the image a clickable link.

          • spec.receivers.pagerdutyConfigs.pagerDutyImageConfigs.src
            string

            Src of the image being attached to the incident

        • spec.receivers.pagerdutyConfigs.pagerDutyLinkConfigs
          array of objects

          A list of link details to attach that provide further detail about an incident.

          PagerDutyLinkConfig attaches text links to an incident

          • spec.receivers.pagerdutyConfigs.pagerDutyLinkConfigs.alt
            string

            Text that describes the purpose of the link, and can be used as the link’s text.

          • spec.receivers.pagerdutyConfigs.pagerDutyLinkConfigs.href
            string

            Href is the URL of the link to be attached

        • spec.receivers.pagerdutyConfigs.routingKey
          object

          The secret’s key that contains the PagerDuty integration key (when using Events API v2). Either this field or serviceKey needs to be defined. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.pagerdutyConfigs.routingKey.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.pagerdutyConfigs.routingKey.name
            string

            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?

          • spec.receivers.pagerdutyConfigs.routingKey.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.pagerdutyConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.pagerdutyConfigs.serviceKey
          object

          The secret’s key that contains the PagerDuty service key (when using integration type “Prometheus”). Either this field or routingKey needs to be defined. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.pagerdutyConfigs.serviceKey.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.pagerdutyConfigs.serviceKey.name
            string

            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?

          • spec.receivers.pagerdutyConfigs.serviceKey.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.pagerdutyConfigs.severity
          string

          Severity of the incident.

        • spec.receivers.pagerdutyConfigs.url
          string

          The URL to send requests to.

      • spec.receivers.pushoverConfigs
        array of objects

        List of Pushover configurations.

        PushoverConfig configures notifications via Pushover. See https://prometheus.io/docs/alerting/latest/configuration/#pushover_config

        • spec.receivers.pushoverConfigs.expire
          string

          How long your notification will continue to be retried for, unless the user acknowledges the notification.

          Pattern: ^(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?$

        • spec.receivers.pushoverConfigs.html
          boolean

          Whether notification message is HTML or plain text.

        • spec.receivers.pushoverConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.pushoverConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.pushoverConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.pushoverConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pushoverConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.pushoverConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.pushoverConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.pushoverConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.pushoverConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.pushoverConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.pushoverConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.pushoverConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.pushoverConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.pushoverConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.pushoverConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.pushoverConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.pushoverConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.pushoverConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.pushoverConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.pushoverConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.pushoverConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.pushoverConfigs.message
          string

          Notification message.

        • spec.receivers.pushoverConfigs.priority
          string

          Priority, see https://pushover.net/api#priority

        • spec.receivers.pushoverConfigs.retry
          string

          How often the Pushover servers will send the same notification to the user. Must be at least 30 seconds.

          Pattern: ^(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?$

        • spec.receivers.pushoverConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.pushoverConfigs.sound
          string

          The name of one of the sounds supported by device clients to override the user’s default sound choice

        • spec.receivers.pushoverConfigs.title
          string

          Notification title.

        • spec.receivers.pushoverConfigs.token
          object

          The secret’s key that contains the registered application’s API token, see https://pushover.net/apps. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.pushoverConfigs.token.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.pushoverConfigs.token.name
            string

            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?

          • spec.receivers.pushoverConfigs.token.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.pushoverConfigs.url
          string

          A supplementary URL shown alongside the message.

        • spec.receivers.pushoverConfigs.urlTitle
          string

          A title for supplementary URL, otherwise just the URL is shown

        • spec.receivers.pushoverConfigs.userKey
          object

          The secret’s key that contains the recipient user’s user key. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.pushoverConfigs.userKey.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.pushoverConfigs.userKey.name
            string

            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?

          • spec.receivers.pushoverConfigs.userKey.optional
            boolean

            Specify whether the Secret or its key must be defined

      • spec.receivers.slackConfigs
        array of objects

        List of Slack configurations.

        SlackConfig configures notifications via Slack. See https://prometheus.io/docs/alerting/latest/configuration/#slack_config

        • spec.receivers.slackConfigs.actions
          array of objects

          A list of Slack actions that are sent with each notification.

          SlackAction configures a single Slack action that is sent with each notification. See https://api.slack.com/docs/message-attachments#action_fields and https://api.slack.com/docs/message-buttons for more information.

          • spec.receivers.slackConfigs.actions.confirm
            object

            SlackConfirmationField protect users from destructive actions or particularly distinguished decisions by asking them to confirm their button click one more time. See https://api.slack.com/docs/interactive-message-field-guide#confirmation_fields for more information.

            • spec.receivers.slackConfigs.actions.confirm.dismissText
              string
            • spec.receivers.slackConfigs.actions.confirm.okText
              string
            • spec.receivers.slackConfigs.actions.confirm.text
              string

              Required value

            • spec.receivers.slackConfigs.actions.confirm.title
              string
          • spec.receivers.slackConfigs.actions.name
            string
          • spec.receivers.slackConfigs.actions.style
            string
          • spec.receivers.slackConfigs.actions.text
            string

            Required value

          • spec.receivers.slackConfigs.actions.type
            string

            Required value

          • spec.receivers.slackConfigs.actions.url
            string
          • spec.receivers.slackConfigs.actions.value
            string
        • spec.receivers.slackConfigs.apiURL
          object

          The secret’s key that contains the Slack webhook URL. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.slackConfigs.apiURL.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.slackConfigs.apiURL.name
            string

            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?

          • spec.receivers.slackConfigs.apiURL.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.slackConfigs.callbackId
          string
        • spec.receivers.slackConfigs.channel
          string

          The channel or user to send notifications to.

        • spec.receivers.slackConfigs.color
          string
        • spec.receivers.slackConfigs.fallback
          string
        • spec.receivers.slackConfigs.fields
          array of objects

          A list of Slack fields that are sent with each notification.

          SlackField configures a single Slack field that is sent with each notification. Each field must contain a title, value, and optionally, a boolean value to indicate if the field is short enough to be displayed next to other fields designated as short. See https://api.slack.com/docs/message-attachments#fields for more information.

          • spec.receivers.slackConfigs.fields.short
            boolean
          • spec.receivers.slackConfigs.fields.title
            string

            Required value

          • spec.receivers.slackConfigs.fields.value
            string

            Required value

        • string
        • spec.receivers.slackConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.slackConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.slackConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.slackConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.slackConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.slackConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.slackConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.slackConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.slackConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.slackConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.slackConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.slackConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.slackConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.slackConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.slackConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.slackConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.slackConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.slackConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.slackConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.slackConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.slackConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.slackConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.slackConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.slackConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.slackConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.slackConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.slackConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.slackConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.slackConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.slackConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.slackConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.slackConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.slackConfigs.iconEmoji
          string
        • spec.receivers.slackConfigs.iconURL
          string
        • spec.receivers.slackConfigs.imageURL
          string
        • spec.receivers.slackConfigs.linkNames
          boolean
        • spec.receivers.slackConfigs.mrkdwnIn
          array of strings
        • spec.receivers.slackConfigs.pretext
          string
        • spec.receivers.slackConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.slackConfigs.shortFields
          boolean
        • spec.receivers.slackConfigs.text
          string
        • spec.receivers.slackConfigs.thumbURL
          string
        • spec.receivers.slackConfigs.title
          string
        • string
        • spec.receivers.slackConfigs.username
          string
      • spec.receivers.snsConfigs
        array of objects

        List of SNS configurations

        SNSConfig configures notifications via AWS SNS. See https://prometheus.io/docs/alerting/latest/configuration/#sns_configs

        • spec.receivers.snsConfigs.apiURL
          string

          The SNS API URL i.e. https://sns.us-east-2.amazonaws.com. If not specified, the SNS API URL from the SNS SDK will be used.

        • spec.receivers.snsConfigs.attributes
          object

          SNS message attributes.

        • spec.receivers.snsConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.snsConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.snsConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.snsConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.snsConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.snsConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.snsConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.snsConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.snsConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.snsConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.snsConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.snsConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.snsConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.snsConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.snsConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.snsConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.snsConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.snsConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.snsConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.snsConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.snsConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.snsConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.snsConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.snsConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.snsConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.snsConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.snsConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.snsConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.snsConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.snsConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.snsConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.snsConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.snsConfigs.message
          string

          The message content of the SNS notification.

        • spec.receivers.snsConfigs.phoneNumber
          string

          Phone number if message is delivered via SMS in E.164 format. If you don’t specify this value, you must specify a value for the TopicARN or TargetARN.

        • spec.receivers.snsConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.snsConfigs.sigv4
          object

          Configures AWS’s Signature Verification 4 signing process to sign requests.

          • spec.receivers.snsConfigs.sigv4.accessKey
            object

            AccessKey is the AWS API key. If not specified, the environment variable AWS_ACCESS_KEY_ID is used.

            • spec.receivers.snsConfigs.sigv4.accessKey.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.snsConfigs.sigv4.accessKey.name
              string

              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?

            • spec.receivers.snsConfigs.sigv4.accessKey.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.snsConfigs.sigv4.profile
            string

            Profile is the named AWS profile used to authenticate.

          • spec.receivers.snsConfigs.sigv4.region
            string

            Region is the AWS region. If blank, the region from the default credentials chain used.

          • spec.receivers.snsConfigs.sigv4.roleArn
            string

            RoleArn is the named AWS profile used to authenticate.

          • spec.receivers.snsConfigs.sigv4.secretKey
            object

            SecretKey is the AWS API secret. If not specified, the environment variable AWS_SECRET_ACCESS_KEY is used.

            • spec.receivers.snsConfigs.sigv4.secretKey.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.snsConfigs.sigv4.secretKey.name
              string

              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?

            • spec.receivers.snsConfigs.sigv4.secretKey.optional
              boolean

              Specify whether the Secret or its key must be defined

        • spec.receivers.snsConfigs.subject
          string

          Subject line when the message is delivered to email endpoints.

        • spec.receivers.snsConfigs.targetARN
          string

          The mobile platform endpoint ARN if message is delivered via mobile notifications. If you don’t specify this value, you must specify a value for the topic_arn or PhoneNumber.

        • spec.receivers.snsConfigs.topicARN
          string

          SNS topic ARN, i.e. arn:aws:sns:us-east-2:698519295917:My-Topic If you don’t specify this value, you must specify a value for the PhoneNumber or TargetARN.

      • spec.receivers.telegramConfigs
        array of objects

        List of Telegram configurations.

        TelegramConfig configures notifications via Telegram. See https://prometheus.io/docs/alerting/latest/configuration/#telegram_config

        • spec.receivers.telegramConfigs.apiURL
          string

          The Telegram API URL i.e. https://api.telegram.org. If not specified, default API URL will be used.

        • spec.receivers.telegramConfigs.botToken
          object

          Telegram bot token. It is mutually exclusive with botTokenFile. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator. Either botToken or botTokenFile is required.

          • spec.receivers.telegramConfigs.botToken.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.telegramConfigs.botToken.name
            string

            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?

          • spec.receivers.telegramConfigs.botToken.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.telegramConfigs.botTokenFile
          string

          File to read the Telegram bot token from. It is mutually exclusive with botToken. Either botToken or botTokenFile is required. It requires Alertmanager >= v0.26.0.

        • spec.receivers.telegramConfigs.chatID
          integer

          The Telegram chat ID.

        • spec.receivers.telegramConfigs.disableNotifications
          boolean

          Disable telegram notifications

        • spec.receivers.telegramConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.telegramConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.telegramConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.telegramConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.telegramConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.telegramConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.telegramConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.telegramConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.telegramConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.telegramConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.telegramConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.telegramConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.telegramConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.telegramConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.telegramConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.telegramConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.telegramConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.telegramConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.telegramConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.telegramConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.telegramConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.telegramConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.telegramConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.telegramConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.telegramConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.telegramConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.telegramConfigs.message
          string

          Message template

        • spec.receivers.telegramConfigs.parseMode
          string

          Parse mode for telegram message

          Allowed values: MarkdownV2, Markdown, HTML

        • spec.receivers.telegramConfigs.sendResolved
          boolean

          Whether to notify about resolved alerts.

      • spec.receivers.victoropsConfigs
        array of objects

        List of VictorOps configurations.

        VictorOpsConfig configures notifications via VictorOps. See https://prometheus.io/docs/alerting/latest/configuration/#victorops_config

        • spec.receivers.victoropsConfigs.apiKey
          object

          The secret’s key that contains the API key to use when talking to the VictorOps API. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.victoropsConfigs.apiKey.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.victoropsConfigs.apiKey.name
            string

            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?

          • spec.receivers.victoropsConfigs.apiKey.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.victoropsConfigs.apiUrl
          string

          The VictorOps API URL.

        • spec.receivers.victoropsConfigs.customFields
          array of objects

          Additional custom fields for notification.

          KeyValue defines a (key, value) tuple.

          • spec.receivers.victoropsConfigs.customFields.key
            string

            Required value

            Key of the tuple.

          • spec.receivers.victoropsConfigs.customFields.value
            string

            Required value

            Value of the tuple.

        • spec.receivers.victoropsConfigs.entityDisplayName
          string

          Contains summary of the alerted problem.

        • spec.receivers.victoropsConfigs.httpConfig
          object

          The HTTP client’s configuration.

          • spec.receivers.victoropsConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.victoropsConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.victoropsConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.victoropsConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.victoropsConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.victoropsConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.victoropsConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.victoropsConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.victoropsConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.victoropsConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.victoropsConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.victoropsConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.victoropsConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.victoropsConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.victoropsConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.victoropsConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.victoropsConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.victoropsConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.victoropsConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.victoropsConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.victoropsConfigs.messageType
          string

          Describes the behavior of the alert (CRITICAL, WARNING, INFO).

        • spec.receivers.victoropsConfigs.monitoringTool
          string

          The monitoring tool the state message is from.

        • spec.receivers.victoropsConfigs.routingKey
          string

          A key used to map the alert to a team.

        • spec.receivers.victoropsConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.victoropsConfigs.stateMessage
          string

          Contains long explanation of the alerted problem.

      • spec.receivers.webexConfigs
        array of objects

        List of Webex configurations.

        WebexConfig configures notification via Cisco Webex See https://prometheus.io/docs/alerting/latest/configuration/#webex_config

        • spec.receivers.webexConfigs.apiURL
          string

          The Webex Teams API URL i.e. https://webexapis.com/v1/messages Provide if different from the default API URL.

          Pattern: ^https?://.+$

        • spec.receivers.webexConfigs.httpConfig
          object

          The HTTP client’s configuration. You must supply the bot token via the httpConfig.authorization field.

          • spec.receivers.webexConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.webexConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.webexConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webexConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.webexConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.webexConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.webexConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.webexConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webexConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.webexConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.webexConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webexConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.webexConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.webexConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.webexConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.webexConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.webexConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.webexConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.webexConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.webexConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.webexConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webexConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.webexConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.webexConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.webexConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.webexConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.webexConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.webexConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.webexConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.webexConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webexConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.webexConfigs.message
          string

          Message template

        • spec.receivers.webexConfigs.roomID
          string

          Required value

          ID of the Webex Teams room where to send the messages.

        • spec.receivers.webexConfigs.sendResolved
          boolean

          Whether to notify about resolved alerts.

      • spec.receivers.webhookConfigs
        array of objects

        List of webhook configurations.

        WebhookConfig configures notifications via a generic receiver supporting the webhook payload. See https://prometheus.io/docs/alerting/latest/configuration/#webhook_config

        • spec.receivers.webhookConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.webhookConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.webhookConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.webhookConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webhookConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.webhookConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.webhookConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.webhookConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.webhookConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.webhookConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.webhookConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.webhookConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.webhookConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.webhookConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.webhookConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.webhookConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webhookConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.webhookConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.webhookConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.webhookConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.webhookConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.webhookConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.webhookConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.webhookConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.webhookConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.webhookConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.webhookConfigs.maxAlerts
          integer

          Maximum number of alerts to be sent per webhook message. When 0, all alerts are included.

          Allowed values: 0 <= X

        • spec.receivers.webhookConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.webhookConfigs.url
          string

          The URL to send HTTP POST requests to. urlSecret takes precedence over url. One of urlSecret and url should be defined.

        • spec.receivers.webhookConfigs.urlSecret
          object

          The secret’s key that contains the webhook URL to send HTTP requests to. urlSecret takes precedence over url. One of urlSecret and url should be defined. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.webhookConfigs.urlSecret.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.webhookConfigs.urlSecret.name
            string

            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?

          • spec.receivers.webhookConfigs.urlSecret.optional
            boolean

            Specify whether the Secret or its key must be defined

      • spec.receivers.wechatConfigs
        array of objects

        List of WeChat configurations.

        WeChatConfig configures notifications via WeChat. See https://prometheus.io/docs/alerting/latest/configuration/#wechat_config

        • spec.receivers.wechatConfigs.agentID
          string
        • spec.receivers.wechatConfigs.apiSecret
          object

          The secret’s key that contains the WeChat API key. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

          • spec.receivers.wechatConfigs.apiSecret.key
            string

            Required value

            The key of the secret to select from. Must be a valid secret key.

          • spec.receivers.wechatConfigs.apiSecret.name
            string

            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?

          • spec.receivers.wechatConfigs.apiSecret.optional
            boolean

            Specify whether the Secret or its key must be defined

        • spec.receivers.wechatConfigs.apiURL
          string

          The WeChat API URL.

        • spec.receivers.wechatConfigs.corpID
          string

          The corp id for authentication.

        • spec.receivers.wechatConfigs.httpConfig
          object

          HTTP client configuration.

          • spec.receivers.wechatConfigs.httpConfig.authorization
            object

            Authorization header configuration for the client. This is mutually exclusive with BasicAuth and is only available starting from Alertmanager v0.22+.

            • spec.receivers.wechatConfigs.httpConfig.authorization.credentials
              object

              Selects a key of a Secret in the namespace that contains the credentials for authentication.

              • spec.receivers.wechatConfigs.httpConfig.authorization.credentials.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.wechatConfigs.httpConfig.authorization.credentials.name
                string

                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?

              • spec.receivers.wechatConfigs.httpConfig.authorization.credentials.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.authorization.type
              string

              Defines the authentication type. The value is case-insensitive. “Basic” is not a supported value. Default: “Bearer”

          • spec.receivers.wechatConfigs.httpConfig.basicAuth
            object

            BasicAuth for the client. This is mutually exclusive with Authorization. If both are defined, BasicAuth takes precedence.

            • spec.receivers.wechatConfigs.httpConfig.basicAuth.password
              object

              The secret in the service monitor namespace that contains the password for authentication.

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.password.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.password.name
                string

                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?

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.password.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.basicAuth.username
              object

              The secret in the service monitor namespace that contains the username for authentication.

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.username.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.username.name
                string

                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?

              • spec.receivers.wechatConfigs.httpConfig.basicAuth.username.optional
                boolean

                Specify whether the Secret or its key must be defined

          • spec.receivers.wechatConfigs.httpConfig.bearerTokenSecret
            object

            The secret’s key that contains the bearer token to be used by the client for authentication. The secret needs to be in the same namespace as the AlertmanagerConfig object and accessible by the Prometheus Operator.

            • spec.receivers.wechatConfigs.httpConfig.bearerTokenSecret.key
              string

              Required value

              The key of the secret to select from. Must be a valid secret key.

            • spec.receivers.wechatConfigs.httpConfig.bearerTokenSecret.name
              string

              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?

            • spec.receivers.wechatConfigs.httpConfig.bearerTokenSecret.optional
              boolean

              Specify whether the Secret or its key must be defined

          • spec.receivers.wechatConfigs.httpConfig.followRedirects
            boolean

            FollowRedirects specifies whether the client should follow HTTP 3xx redirects.

          • spec.receivers.wechatConfigs.httpConfig.oauth2
            object

            OAuth2 client credentials used to fetch a token for the targets.

            • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId
              object

              Required value

              The secret or configmap containing the OAuth2 client id

              • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.configMap.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.secret.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.oauth2.clientId.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.oauth2.clientSecret
              object

              Required value

              The secret containing the OAuth2 client secret

              • spec.receivers.wechatConfigs.httpConfig.oauth2.clientSecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.wechatConfigs.httpConfig.oauth2.clientSecret.name
                string

                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?

              • spec.receivers.wechatConfigs.httpConfig.oauth2.clientSecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.oauth2.endpointParams
              object

              Parameters to append to the token URL

            • spec.receivers.wechatConfigs.httpConfig.oauth2.scopes
              array of strings

              OAuth2 scopes used for the token request

            • spec.receivers.wechatConfigs.httpConfig.oauth2.tokenUrl
              string

              Required value

              The URL to fetch the token from

          • spec.receivers.wechatConfigs.httpConfig.proxyURL
            string

            Optional proxy URL.

          • spec.receivers.wechatConfigs.httpConfig.tlsConfig
            object

            TLS configuration for the client.

            • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca
              object

              Certificate authority used when verifying server certificates.

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.configMap.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.secret.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.ca.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert
              object

              Client certificate to present when doing client-authentication.

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.configMap
                object

                ConfigMap containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.configMap.key
                  string

                  Required value

                  The key to select.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.configMap.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.configMap.optional
                  boolean

                  Specify whether the ConfigMap or its key must be defined

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.secret
                object

                Secret containing data to use for the targets.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.secret.key
                  string

                  Required value

                  The key of the secret to select from. Must be a valid secret key.

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.secret.name
                  string

                  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?

                • spec.receivers.wechatConfigs.httpConfig.tlsConfig.cert.secret.optional
                  boolean

                  Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.tlsConfig.insecureSkipVerify
              boolean

              Disable target certificate validation.

            • spec.receivers.wechatConfigs.httpConfig.tlsConfig.keySecret
              object

              Secret containing the client key file for the targets.

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.keySecret.key
                string

                Required value

                The key of the secret to select from. Must be a valid secret key.

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.keySecret.name
                string

                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?

              • spec.receivers.wechatConfigs.httpConfig.tlsConfig.keySecret.optional
                boolean

                Specify whether the Secret or its key must be defined

            • spec.receivers.wechatConfigs.httpConfig.tlsConfig.serverName
              string

              Used to verify the hostname for the targets.

        • spec.receivers.wechatConfigs.message
          string

          API request data as defined by the WeChat API.

        • spec.receivers.wechatConfigs.messageType
          string
        • spec.receivers.wechatConfigs.sendResolved
          boolean

          Whether or not to notify about resolved alerts.

        • spec.receivers.wechatConfigs.toParty
          string
        • spec.receivers.wechatConfigs.toTag
          string
        • spec.receivers.wechatConfigs.toUser
          string
    • spec.route
      object

      The Alertmanager route definition for alerts matching the resource’s namespace. If present, it will be added to the generated Alertmanager configuration as a first-level route.

      • spec.route.activeTimeIntervals
        array of strings

        ActiveTimeIntervals is a list of MuteTimeInterval names when this route should be active.

      • spec.route.continue
        boolean

        Boolean indicating whether an alert should continue matching subsequent sibling nodes. It will always be overridden to true for the first-level route by the Prometheus operator.

      • spec.route.groupBy
        array of strings

        List of labels to group by. Labels must not be repeated (unique list). Special label “…” (aggregate by all possible labels), if provided, must be the only element in the list.

      • spec.route.groupInterval
        string

        How long to wait before sending an updated notification. Must match the regular expression^(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?$ Example: “5m”

      • spec.route.groupWait
        string

        How long to wait before sending the initial notification. Must match the regular expression^(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?$ Example: “30s”

      • spec.route.matchers
        array of objects

        List of matchers that the alert’s labels should match. For the first level route, the operator removes any existing equality and regexp matcher on the namespace label and adds a namespace: <object namespace> matcher.

        Matcher defines how to match on alert’s labels.

        • spec.route.matchers.matchType
          string

          Match operation available with AlertManager >= v0.22.0 and takes precedence over Regex (deprecated) if non-empty.

          Allowed values: !=, =, =~, !~

        • spec.route.matchers.name
          string

          Required value

          Label to match.

        • spec.route.matchers.regex
          boolean

          Whether to match on equality (false) or regular-expression (true). Deprecated as of AlertManager >= v0.22.0 where a user should use MatchType instead.

        • spec.route.matchers.value
          string

          Label value to match.

      • spec.route.muteTimeIntervals
        array of strings

        Note: this comment applies to the field definition above but appears below otherwise it gets included in the generated manifest. CRD schema doesn’t support self-referential types for now (see https://github.com/kubernetes/kubernetes/issues/62872). We have to use an alternative type to circumvent the limitation. The downside is that the Kube API can’t validate the data beyond the fact that it is a valid JSON representation. MuteTimeIntervals is a list of MuteTimeInterval names that will mute this route when matched,

      • spec.route.receiver
        string

        Name of the receiver for this route. If not empty, it should be listed in the receivers field.

      • spec.route.repeatInterval
        string

        How long to wait before repeating the last notification. Must match the regular expression^(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?$ Example: “4h”

      • spec.route.routes
        array

        Child routes.