Skip to content

Commit

Permalink
Better feature checking
Browse files Browse the repository at this point in the history
  • Loading branch information
hardillb committed May 13, 2024
1 parent b628e99 commit d9b361a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes.js
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ module.exports = {
this._certManagerIssuer = this._app.config.driver.options?.certManagerIssuer
this._logPassthrough = this._app.config.driver.options?.logPassthrough || false
this._cloudProvider = this._app.config.driver.options?.cloudProvider
this._customHostname = this._app.config.driver.options?.customHostname
this._customHostname = this._app.config.driver.options?.customHostname && this._app.config.features.enabled('customHostnames')

const kc = new k8s.KubeConfig()

Expand Down

0 comments on commit d9b361a

Please sign in to comment.