1
0
Fork 0
mirror of https://github.com/prometheus-operator/prometheus-operator.git synced 2025-04-21 03:38:43 +00:00

fix: chore generate failure

Signed-off-by: Jayapriya Pai <slashpai9@gmail.com>
This commit is contained in:
Jayapriya Pai 2025-02-01 11:29:51 +05:30
parent 9ad1f30707
commit 49638ca077
No known key found for this signature in database
GPG key ID: 3E100BB6BD29148E
2 changed files with 2 additions and 2 deletions
pkg/client/applyconfiguration/monitoring

View file

@ -839,7 +839,7 @@ func (b *PrometheusSpecApplyConfiguration) WithTSDB(value *TSDBSpecApplyConfigur
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the ScrapeFailureLogFile field is set to the value of the last call.
func (b *PrometheusSpecApplyConfiguration) WithScrapeFailureLogFile(value string) *PrometheusSpecApplyConfiguration {
b.ScrapeFailureLogFile = &value
b.CommonPrometheusFieldsApplyConfiguration.ScrapeFailureLogFile = &value
return b
}

View file

@ -828,7 +828,7 @@ func (b *PrometheusAgentSpecApplyConfiguration) WithTSDB(value *v1.TSDBSpecApply
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
// If called multiple times, the ScrapeFailureLogFile field is set to the value of the last call.
func (b *PrometheusAgentSpecApplyConfiguration) WithScrapeFailureLogFile(value string) *PrometheusAgentSpecApplyConfiguration {
b.ScrapeFailureLogFile = &value
b.CommonPrometheusFieldsApplyConfiguration.ScrapeFailureLogFile = &value
return b
}