diff --git a/pkg/client/notifications/config.go b/pkg/client/notifications/config.go index 2671cf88..8aaeaa49 100644 --- a/pkg/client/notifications/config.go +++ b/pkg/client/notifications/config.go @@ -1,21 +1,23 @@ package notifications type ClientConfiguration struct { - BaseURL string - ProxyURL string - KeyFile string - CertFile string - Key string - Cert string - EnableMock bool + BaseURL string + ProxyURL string + KeyFile string + CertFile string + Key string + Cert string + EnableMock bool + EnableRHCSCertAutoRotation bool } func NewClientConfig() *ClientConfiguration { return &ClientConfiguration{ - BaseURL: "https://mtls.internal.cloud.redhat.com/api/notifications-gw/notifications", - ProxyURL: "", - KeyFile: "secrets/notifications.key", - CertFile: "secrets/notifications.crt", - EnableMock: false, + BaseURL: "https://mtls.internal.cloud.redhat.com/api/notifications-gw/notifications", + ProxyURL: "", + KeyFile: "secrets/notifications.key", + CertFile: "secrets/notifications.crt", + EnableMock: false, + EnableRHCSCertAutoRotation: false, } }