Skip to content

DLPX-93823 cloud-init configuration contains module names that are no longer correct #519

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 18 additions & 20 deletions files/common/etc/cloud/cloud.cfg.d/91-delphix-platform.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,14 @@ apt:

#
# By default, ignore ssh keys passed from the cloud management console.
# Also, discard any user data to prevent tampering with the default
# Delphix configuration. Note that those configurations are currently
# only available on Delphix's version of cloud-init.
#
allow_public_ssh_keys: false

#
# Discard any user data (cloud-init configuration passed to the instance via
# cloud-specific mechanisms) to prevent tampering with the default Delphix
# configuration.
#
allow_userdata: false

#
Expand Down Expand Up @@ -116,32 +119,27 @@ datasource_list:
#

cloud_init_modules:
- migrator
- seed_random
- bootcmd
- write-files
- write_files
- update_etc_hosts
- ssh

cloud_config_modules:
- wireguard
- ubuntu_autoinstall
- ssh-import-id
- ssh_import_id
- keyboard
- locale
- grub-dpkg
- apt-pipelining
- apt-configure
- grub_dpkg
- apt_configure
- ntp
- runcmd

cloud_final_modules:
- package-update-upgrade-install
- write-files-deferred
- scripts-vendor
- scripts-per-once
- scripts-per-boot
- scripts-per-instance
- scripts-user
- install-hotplug
- final-message
- write_files_deferred
- scripts_per_once
- scripts_per_boot
- scripts_per_instance
- scripts_user
- install_hotplug
- final_message
- power_state_change
Loading