-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.sh
163 lines (128 loc) · 3.83 KB
/
config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#!/bin/bash
# -----------------------------------------------------------------------------
# package: ultralight provisioning system
# author: Daniel Kovacs <[email protected]>
# licence: MIT <https://opensource.org/licenses/MIT>
# file-version: 1.0
# file-purpose: provisioner configuration
# -----------------------------------------------------------------------------
# -----------------------------------------------------------
# module config
# -----------------------------------------------------------
#
# Please uncomment required module
#
export PROVISIONER_ENABLED_MODULES=(
# ---------------------------
# generic modules
# ---------------------------
general
# repo_epel
# repo_rpmfusion
# ---------------------------
# developer user and tools
# ---------------------------
devuser
devtools
# devproject
# ---------------------------
# file sharing modules
# ---------------------------
nfs
# samba
# ---------------------------
# programming languages
# ---------------------------
python
# dotnet
golang
# nodejs
# ---------------------------
# databases
# ---------------------------
# mongodb # broken
# mongotron
# ---------------------------
# container support
# ---------------------------
docker
# lxc
# ---------------------------
# cloud support
# ---------------------------
aws
# gae
# terraform
# ---------------------------
# kubernetes support
# ---------------------------
kubernetes_client
# kubernetes_minikube
# ---------------------------
# vpn support
# ---------------------------
# vpn_l2tp_client
# vpn_tinc
)
# -----------------------------------------------------------
# time-zone configuration
# -----------------------------------------------------------
#
# Set the timezone for the VM
#
export SYSTEM_TIMEZONE=UTC
# export SYSTEM_TIMEZONE=Australia/Sydney
# -----------------------------------------------------------
# system packages config
# -----------------------------------------------------------
#
# Define extra packages here, these will be installed using
# dnf / apt, based on which platform is used.
#
export SYSTEM_PACKAGES=(
)
export SYSTEM_SWAP_SIZE="4096"
# -----------------------------------------------------------
# dev user config
# -----------------------------------------------------------
export DEVUSER_NAME="dev"
export DEVUSER_EMAIL=""
export DEVUSER_FULLNAME=""
export DEVUSER_PASSWORD="vagrant"
export DEVUSER_GID=20
export DEVUSER_UID=501
# -----------------------------------------------------------
# aws config
# -----------------------------------------------------------
export AWS_CONFIG_REGION=us-west-2
export AWS_CONFIG_DEFAULT_FORMAT=json
export AWS_CREDENTIALS_ACCESS_KEY_ID=
export AWS_CREDENTIALS_SECRED_ACCESS_KEY=
# -----------------------------------------------------------
# helm config
# -----------------------------------------------------------
HELM3_VERSION="3.8.1"
# -----------------------------------------------------------
# python config
# -----------------------------------------------------------
export PYTHON_PACKAGES=(
virtualenv
)
# -----------------------------------------------------------
# nodejs config
# -----------------------------------------------------------
export NODEJS_NVM_VERSION=0.35.3
export NODEJS_VERSION=--lts
export NODEJS_PACKAGES=(
# @vue/cli
)
# -----------------------------------------------------------
# VPN config
# -----------------------------------------------------------
export VPN_L2TP_NAME="my_vpn"
export VPN_L2TP_HOST="my-vpn-hostname"
export VPN_L2TP_PSK="mypskkey"
export VPN_L2TP_USER="myusername"
export VPN_L2TP_IPSEC_IKE=3des-sha1-modp2048
export VPN_L2TP_IPSEC_ESP=3des-sha1
export VPN_L2TP_IPSEC_PFS=no