View buildconfig.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
kind: "BuildConfig" | |
apiVersion: "v1" | |
metadata: | |
name: "mytestbuild" | |
spec: | |
runPolicy: "Serial" | |
source: | |
dockerfile: |- | |
FROM golang:alpine AS builder |
View preseed.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View autoyast.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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> |
View centos.ks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
View preseed.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |