Skip to content
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

feat: Add provisioning template for cloudinit user data #345

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
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
119 changes: 119 additions & 0 deletions app/views/templates/provisioning/user_data/proxmox_user_data.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<%#
kind: user_data
name: Proxmox UserData
model: ProvisioningTemplate
require:
- plugin: foreman_fog_proxmox
version: 0.16.1
oses:
- AlmaLinux
- Amazon
- CentOS
- CentOS_Stream
- Debian
- Rocky
- Ubuntu
description: |
This template is used during image based provisioning with Proxmox Compute Resource, when
the image is configured to use user-data and network config. The output is a list of
cloud-init directives that cloud-init parses to configures the VM booted from the image.
The image must have cloud-init installed in order for this to work.
This template accepts the following parameters:
- ssh_pwauth: boolean (default=true unless ssh_authorized_keys)
- ssh_authorized_keys: string w newline seperated keys (default="")
- package_upgrade: boolean (default=false)
- reboot: boolean (default=false)
- skip-puppet-setup: boolean (default=false)
-%>
<%
ssh_pwauth = host_param('ssh_pwauth') ? host_param_true?('ssh_pwauth') : !host_param('ssh_authorized_keys')
rhel_compatible = @host.operatingsystem.family == 'Redhat' && @host.operatingsystem.name != 'Fedora'
# safemode renderer does not support unary negation
puppet_enabled = !host_param_true?('skip-puppet-setup') && (host_puppet_server.present? || host_param_true?('force-puppet'))
salt_enabled = host_param('salt_master') ? true : false
chef_enabled = @host.respond_to?(:chef_proxy) && @host.chef_proxy
-%>
<%
username_to_create = host_param('username_to_create', 'root')
password_to_create = host_param('password_to_create') || @host.root_pass
-%>
#cloud-config
hostname: <%= @host.shortname %>
fqdn: <%= @host %>
manage_etc_hosts: true
<% if ssh_pwauth -%>
<%# Don't enable this in production. It is very insecure! Use ssh_authorized_keys instead...
http://cloudinit.readthedocs.io/en/latest/topics/examples.html#including-users-and-groups -%>
ssh_pwauth: true
users:
- name: <%= username_to_create %>
shell: /bin/bash
sudo: ALL=(ALL) ALL
lock_passwd: false
hashed_passwd: <%= password_to_create %>
<% end -%>
<% if host_param('ssh_authorized_keys') -%>
ssh_authorized_keys:
<% host_param('ssh_authorized_keys').split("\n").each do |ssh_key| -%>
- <%= ssh_key %>
<% end -%>
<% end -%>

<% if host_param_true?('package_upgrade') -%>
package_upgrade: true
<% end -%>

runcmd:
<% if rhel_compatible -%>
- |
<%= indent(2) { snippet('epel') } %>
<% end -%>
- |
<%= indent(2) { snippet('remote_execution_ssh_keys') } %>
<% if chef_enabled -%>
- |
<%= indent(2) { snippet('chef_client') } %>
<% end -%>
<% if puppet_enabled -%>
- |
<%= indent(2) { snippet('puppetlabs_repo') } %>
- |
<%= indent(2) { snippet('puppet_setup') } %>
<% end -%>
<% if salt_enabled -%>
- |
<%= indent(2) { snippet('saltstack_setup') } %>
<% end -%>

<%# Contact Foreman to confirm instance is built -%>
phone_home:
url: <%= foreman_url('built') %>
post: []
tries: 10

<% if host_param_true?('reboot') -%>
power_state:
mode: reboot
timeout: 30
condition: true
<% end -%>

#network-config
version: 2
ethernets:
eth0:
match:
name: e*
dhcp4: false
dhcp6: false
addresses:
- <%= @host.ip %>/<%= @host.subnet.cidr %>
routes:
- to: 0.0.0.0
via: <%= @host.subnet.gateway %>
nameservers:
addresses:
- <%= @host.subnet.dns_primary%>
search:
- <%= @host.domain.name %>
7 changes: 7 additions & 0 deletions db/seeds.d/71_provisioning_templates.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

ProvisioningTemplate.without_auditing do
SeedHelper.import_templates(
Dir[File.join("#{ForemanFogProxmox::Engine.root}/app/views/templates/provisioning/**/*.erb")]
)
end