Skip to content

Commit

Permalink
chore(aws): legacyUdf no longer enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
asher committed May 24, 2019
1 parent 6666217 commit 681016c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions clouddriver-aws/UserData.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The location of the template file is controlled by the `udf.udfRoot` property an
````yaml
udf:
udfRoot: /apps/nflx-udf
defaultLegacyUdf: true
defaultLegacyUdf: false
````

You almost certainly want to change `udf.defaultLegacyUdf=false`, and possibly want to change the location on the filesystem where the template file lives to suit your deployment.
As of Spinnaker 1.15, `udf.defaultLegacyUdf` defaults to false. You almost certainly want to change the location on the filesystem where the template file lives to suit your deployment.

## Template file

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ class LocalFileUserDataProperties {
*/
boolean enabled = true
String udfRoot = '/apps/nflx-udf'
boolean defaultLegacyUdf = true
boolean defaultLegacyUdf = false
}

0 comments on commit 681016c

Please sign in to comment.