From 54243ab99db40561fbb3675dea886c102300cce7 Mon Sep 17 00:00:00 2001 From: Doug Masiero Date: Wed, 6 Nov 2024 18:18:52 -0500 Subject: [PATCH] Initial commit --- README.md | 1 + cloud-config.yaml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 cloud-config.yaml diff --git a/README.md b/README.md index 5544495..2826127 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # kvm +Working on scripting to create a VM from a template. \ No newline at end of file diff --git a/cloud-config.yaml b/cloud-config.yaml new file mode 100644 index 0000000..bc366d8 --- /dev/null +++ b/cloud-config.yaml @@ -0,0 +1,19 @@ +#cloud-config +hostname: vm-template-staging +network: + version: 2 + ethernets: + enp1s0: + dhcp4: no + addresses: + - 100.40.223.190/24 + gateway4: 100.40.223.1 + nameservers: + addresses: + - 8.8.8.8 + - 8.8.4.4 +users: + - moeny + - name: moeny + ssh_authorized_keys: + - ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCRMJNdI/n/7xYN65zHFN8hlRSDg5OPJ12AwOsUyP8OmKCQTapoVQ/suvjaUTCtt8o28QNIQm1vAD03hFNzVJn6F6FJu9vUbR+YqlmzmzGJXB6sWWTEnc9/GsVvLoculuzFYfa2qU9xFbuUTtqFRu6qor82TPAhy/yVWzIvRxlfuxKLpdU9paKiV+WtCkSpVoBgIH6soBE1swMX4ILIOGeFTrmCdBac4K1Bs0OarKtShR6PHdNiqPlwpCeQQDZD8ops69yBMc0t6poFZC9FYSj7arJEWvZN9YtUr+PJiYZQc+gIG4enPW1Zf4FEkXXvH/t6RaYMq9w/P5lIUNOVe169 \ No newline at end of file