Compare commits
1 Commits
main
...
0c0ba1f88a
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c0ba1f88a |
12
.drone.yml
12
.drone.yml
@@ -29,19 +29,17 @@ steps:
|
|||||||
curl \
|
curl \
|
||||||
make
|
make
|
||||||
- |
|
- |
|
||||||
jq '.password="'"$VSPHERE_PASSWORD"'"' ./packer/ova/vsphere.json > /tmp/vsphere.json && \
|
jq '.password="'"$VSPHERE_PASSWORD"'"' /drone/src/override.json > /tmp/json && \
|
||||||
mv /tmp/vsphere.json ./packer/ova/vsphere.json
|
mv /tmp/json /drone/src/override.json
|
||||||
- |
|
- |
|
||||||
make deps-ova
|
make deps-ova
|
||||||
- |
|
- |
|
||||||
make build-node-ova-vsphere-ubuntu-2004
|
make build-node-ova-vsphere-ubuntu-2204
|
||||||
- |
|
|
||||||
mv -fv ./output/**/*.ova /output
|
|
||||||
environment:
|
environment:
|
||||||
VSPHERE_PASSWORD:
|
VSPHERE_PASSWORD:
|
||||||
from_secret: vsphere_password
|
from_secret: vsphere_password
|
||||||
IB_OVFTOOL: true
|
PACKER_VAR_FILES:
|
||||||
IB_OVFTOOL_ARGS: --allowExtraConfig
|
/drone/src/override.json
|
||||||
volumes:
|
volumes:
|
||||||
- name: output
|
- name: output
|
||||||
path: /output
|
path: /output
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
- name: Override cloud-init datasource list
|
|
||||||
ansible.builtin.copy:
|
|
||||||
dest: /etc/cloud/cloud.cfg.d/90_dpkg.cfg
|
|
||||||
content: |
|
|
||||||
# To update this file, run dpkg-reconfigure cloud-init
|
|
||||||
datasource_list: [ VMware, None ]
|
|
||||||
7
override.json
Normal file
7
override.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"boot_command_prefix": "c<wait>linux /casper/vmlinuz --- autoinstall quiet<enter><wait>initrd /casper/initrd<enter><wait>boot<enter>",
|
||||||
|
"cd_file_path": "./packer/ova/linux/{{user `distro_name`}}/http/{{user `distro_version`}}",
|
||||||
|
"cd_files": ["{{user `cd_file_path`}}/meta-data", "{{user `cd_file_path`}}/user-data"],
|
||||||
|
"cd_label": "cidata",
|
||||||
|
"floppy_dirs": null
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"build_target": "virt",
|
"build_target": "virt",
|
||||||
"disable_public_repos": "false",
|
"disable_public_repos": "false",
|
||||||
"extra_debs": "open-iscsi",
|
"extra_debs": "",
|
||||||
"extra_repos": "",
|
"extra_repos": "",
|
||||||
"extra_rpms": "",
|
"extra_rpms": "",
|
||||||
"firstboot_custom_roles_post": "",
|
"firstboot_custom_roles_post": "",
|
||||||
@@ -9,9 +9,9 @@
|
|||||||
"http_proxy": "",
|
"http_proxy": "",
|
||||||
"https_proxy": "",
|
"https_proxy": "",
|
||||||
"no_proxy": "",
|
"no_proxy": "",
|
||||||
"node_custom_roles_post": "custom",
|
"node_custom_roles_post": "",
|
||||||
"node_custom_roles_pre": "",
|
"node_custom_roles_pre": "",
|
||||||
"pause_image": "registry.k8s.io/pause:3.6",
|
"pause_image": "registry.k8s.io/pause:3.9",
|
||||||
"pip_conf_file": "",
|
"pip_conf_file": "",
|
||||||
"redhat_epel_rpm": "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm",
|
"redhat_epel_rpm": "https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm",
|
||||||
"reenable_public_repos": "true",
|
"reenable_public_repos": "true",
|
||||||
|
|||||||
@@ -1,87 +0,0 @@
|
|||||||
#cloud-config
|
|
||||||
# Copyright 2022 The Kubernetes Authors.
|
|
||||||
#
|
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
# you may not use this file except in compliance with the License.
|
|
||||||
# You may obtain a copy of the License at
|
|
||||||
#
|
|
||||||
# http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
#
|
|
||||||
# Unless required by applicable law or agreed to in writing, software
|
|
||||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
# See the License for the specific language governing permissions and
|
|
||||||
# limitations under the License.
|
|
||||||
|
|
||||||
|
|
||||||
# For more information on how autoinstall is configured, please refer to
|
|
||||||
# https://ubuntu.com/server/docs/install/autoinstall-reference
|
|
||||||
autoinstall:
|
|
||||||
version: 1
|
|
||||||
# Disable ssh server during installation, otherwise packer tries to connect and exceed max attempts
|
|
||||||
early-commands:
|
|
||||||
- systemctl stop ssh
|
|
||||||
# Configure the locale
|
|
||||||
locale: en_US.UTF-8
|
|
||||||
keyboard:
|
|
||||||
layout: us
|
|
||||||
# Create a single-partition with no swap space. Kubernetes
|
|
||||||
# really dislikes the idea of anyone else managing memory.
|
|
||||||
# For more information on how partitioning is configured,
|
|
||||||
# please refer to https://curtin.readthedocs.io/en/latest/topics/storage.html.
|
|
||||||
storage:
|
|
||||||
config:
|
|
||||||
- type: disk
|
|
||||||
id: disk-0
|
|
||||||
size: largest
|
|
||||||
grub_device: true
|
|
||||||
preserve: false
|
|
||||||
ptable: msdos
|
|
||||||
wipe: superblock
|
|
||||||
- type: partition
|
|
||||||
id: partition-0
|
|
||||||
device: disk-0
|
|
||||||
size: -1
|
|
||||||
number: 1
|
|
||||||
preserve: false
|
|
||||||
flag: boot
|
|
||||||
- type: format
|
|
||||||
id: format-0
|
|
||||||
volume: partition-0
|
|
||||||
fstype: ext4
|
|
||||||
preserve: false
|
|
||||||
- type: mount
|
|
||||||
id: mount-0
|
|
||||||
device: format-0
|
|
||||||
path: /
|
|
||||||
updates: 'all'
|
|
||||||
ssh:
|
|
||||||
install-server: true
|
|
||||||
allow-pw: true
|
|
||||||
# Customize the list of packages installed.
|
|
||||||
packages:
|
|
||||||
- open-vm-tools
|
|
||||||
# Create the default user.
|
|
||||||
# Ensures the "builder" user doesn't require a password to use sudo.
|
|
||||||
user-data:
|
|
||||||
users:
|
|
||||||
- name: builder
|
|
||||||
# openssl passwd -6 -stdin <<< builder
|
|
||||||
passwd: $6$xyz$UtXVazU08Q5b8AW.TJ3MPYZglyXa3Ttf2RCel8MCUPlEYO1evWxeWBhZ2QqivU/Ij4tqYAxMCqc2ujEM4dMSe1
|
|
||||||
groups: [adm, cdrom, dip, plugdev, lxd, sudo]
|
|
||||||
lock-passwd: false
|
|
||||||
sudo: ALL=(ALL) NOPASSWD:ALL
|
|
||||||
shell: /bin/bash
|
|
||||||
|
|
||||||
# This command runs after all other steps; it:
|
|
||||||
# 1. Disables swapfiles
|
|
||||||
# 2. Removes the existing swapfile
|
|
||||||
# 3. Removes the swapfile entry from /etc/fstab
|
|
||||||
# 4. Cleans up any packages that are no longer required
|
|
||||||
# 5. Removes the cached list of packages
|
|
||||||
late-commands:
|
|
||||||
- swapoff -a
|
|
||||||
- rm -f /swapfile
|
|
||||||
- sed -ri '/\sswap\s/s/^#?/#/' /etc/fstab
|
|
||||||
- apt-get purge --auto-remove -y
|
|
||||||
- rm -rf /var/lib/apt/lists/*
|
|
||||||
@@ -188,14 +188,11 @@
|
|||||||
],
|
],
|
||||||
"boot_wait": "{{user `boot_wait`}}",
|
"boot_wait": "{{user `boot_wait`}}",
|
||||||
"cluster": "{{user `cluster`}}",
|
"cluster": "{{user `cluster`}}",
|
||||||
"cd_files": ["{{user `cd_file_path`}}/meta-data", "{{user `cd_file_path`}}/user-data"],
|
|
||||||
"cd_label": "cidata",
|
|
||||||
"communicator": "ssh",
|
"communicator": "ssh",
|
||||||
"convert_to_template": "{{user `convert_to_template`}}",
|
"convert_to_template": "{{user `convert_to_template`}}",
|
||||||
"cpu_cores": "{{user `cpu_cores`}}",
|
"cpu_cores": "{{user `cpu_cores`}}",
|
||||||
"datacenter": "{{user `datacenter`}}",
|
"datacenter": "{{user `datacenter`}}",
|
||||||
"datastore": "{{user `datastore`}}",
|
"datastore": "{{user `datastore`}}",
|
||||||
"destroy": true,
|
|
||||||
"disk_controller_type": "{{user `disk_controller_type`}}",
|
"disk_controller_type": "{{user `disk_controller_type`}}",
|
||||||
"export": {
|
"export": {
|
||||||
"force": true,
|
"force": true,
|
||||||
@@ -221,7 +218,7 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"password": "{{user `password`}}",
|
"password": "{{user `password`}}",
|
||||||
"shutdown_command": "echo '{{user `ssh_password`}}' | sudo -S -E sh -c '{{user `shutdown_command`}}'",
|
"shutdown_command": "echo '{{user `ssh_password`}}' | sudo -S -E sh -c 'usermod -L {{user `ssh_username`}} && {{user `shutdown_command`}}'",
|
||||||
"ssh_password": "{{user `ssh_password`}}",
|
"ssh_password": "{{user `ssh_password`}}",
|
||||||
"ssh_timeout": "4h",
|
"ssh_timeout": "4h",
|
||||||
"ssh_username": "{{user `ssh_username`}}",
|
"ssh_username": "{{user `ssh_username`}}",
|
||||||
|
|||||||
@@ -4,7 +4,6 @@
|
|||||||
"boot_disable_ipv6": "0",
|
"boot_disable_ipv6": "0",
|
||||||
"boot_media_path": "/media/HTTP",
|
"boot_media_path": "/media/HTTP",
|
||||||
"build_name": "ubuntu-2004",
|
"build_name": "ubuntu-2004",
|
||||||
"cd_file_path": "./packer/ova/linux/{{user `distro_name`}}/http/{{user `distro_version`}}",
|
|
||||||
"distro_arch": "amd64",
|
"distro_arch": "amd64",
|
||||||
"distro_name": "ubuntu",
|
"distro_name": "ubuntu",
|
||||||
"distro_version": "20.04",
|
"distro_version": "20.04",
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"boot_command_prefix": "c<wait>linux /casper/vmlinuz --- autoinstall quiet<enter><wait>initrd /casper/initrd<enter><wait>boot<enter>",
|
"boot_command_prefix": "c<wait>linux /casper/vmlinuz --- autoinstall ds='nocloud-net;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/22.04/'<enter><wait>initrd /casper/initrd<enter><wait>boot<enter>",
|
||||||
"boot_disable_ipv6": "0",
|
"boot_disable_ipv6": "0",
|
||||||
"boot_media_path": "/media/HTTP",
|
"boot_media_path": "/media/HTTP",
|
||||||
"build_name": "ubuntu-2204",
|
"build_name": "ubuntu-2204",
|
||||||
"cd_file_path": "./packer/ova/linux/{{user `distro_name`}}/http/{{user `distro_version`}}",
|
|
||||||
"distro_arch": "amd64",
|
"distro_arch": "amd64",
|
||||||
"distro_name": "ubuntu",
|
"distro_name": "ubuntu",
|
||||||
"distro_version": "22.04",
|
"distro_version": "22.04",
|
||||||
|
"floppy_dirs": "./packer/ova/linux/{{user `distro_name`}}/http/",
|
||||||
"guest_os_type": "ubuntu-64",
|
"guest_os_type": "ubuntu-64",
|
||||||
"iso_checksum": "10f19c5b2b8d6db711582e0e27f5116296c34fe4b313ba45f9b201a5007056cb",
|
"iso_checksum": "10f19c5b2b8d6db711582e0e27f5116296c34fe4b313ba45f9b201a5007056cb",
|
||||||
"iso_checksum_type": "sha256",
|
"iso_checksum_type": "sha256",
|
||||||
|
|||||||
Reference in New Issue
Block a user