Skip to content

Instantly share code, notes, and snippets.

---
kind: "BuildConfig"
apiVersion: "v1"
metadata:
name: "mytestbuild"
spec:
runPolicy: "Serial"
source:
dockerfile: |-
FROM golang:alpine AS builder
@ofrzeta
ofrzeta / preseed.cfg
Last active May 10, 2019 14:14
Minmal preseed.cfg for Debian on KVM, German keyboard/timezone, auto LVM partitioning, serial console
d-i debian-installer/locale string en_US
d-i keymap select de
d-i keyboard-configuration/xkb-keymap select de
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string de
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string debianhost
d-i netcfg/get_domain string mydomain
d-i netcfg/wireless_wep string
@ofrzeta
ofrzeta / autoyast.xml
Last active July 4, 2023 11:28
Minimal Autoyast installation file for OpenSuse Tumbleweed
<?xml version="1.0"?>
<!DOCTYPE profile>
<profile
xmlns="http://www.suse.com/1.0/yast2ns"
xmlns:config="http://www.suse.com/1.0/configns">
<general>
<mode>
<confirm config:type="boolean">false</confirm>
<second_stage config:type="boolean">false</second_stage>
</mode>
@ofrzeta
ofrzeta / centos.ks
Last active April 4, 2016 11:46
Minimal Kickstart File for CentOS 6
skipx
install
url --url http://mirror.cogentco.com/pub/linux/centos/6/os/x86_64/
lang de_DE.UTF-8
keyboard de
timezone --utc Europe/Berlin
rootpw password
network --bootproto=dhcp
authconfig --enableshadow --passalgo=sha512
bootloader --location=mbr
@ofrzeta
ofrzeta / preseed.cfg
Created November 26, 2015 12:15
Minimal preseed.cfg for network installation of Ubuntu 14.04 "Trusty Tahr"
d-i debian-installer/locale string en_US
d-i time/zone string Europe/Berlin
d-i console-setup/ask_detect boolean false
d-i keyboard-configuration/layoutcode string de
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string unassigned-hostname
d-i netcfg/get_domain string unassigned-domain
d-i mirror/country string manual
d-i mirror/http/hostname string archive.ubuntu.com
d-i mirror/http/directory string /ubuntu