View values.yaml
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
# Available parameters and their default values for the Vault chart. | |
global: | |
# enabled is the master enabled switch. Setting this to true or false | |
# will enable or disable all the components within this chart by default. | |
enabled: true | |
# Image pull secret to use for registry authentication. | |
imagePullSecrets: [] | |
# imagePullSecrets: | |
# - name: image-pull-secret |
View sigImgLinux.json
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
{ | |
"type": "Microsoft.VirtualMachineImages", | |
"apiVersion": "2019-05-01-preview", | |
"location": "<location>", | |
"dependsOn": [], | |
"tags": { | |
"imagebuilderTemplate": "AzureImageBuilderSIG", | |
"userIdentity": "enabled" | |
}, | |
"identity": { |
View setup-docker.sh
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
############################################ | |
# Shell script for basic docker setup | |
# sets up v. 18.09.2-3.el7 | |
############################################ | |
# add repo | |
sudo curl -SsL https://download.docker.com/linux/centos/docker-ce.repo -o /etc/yum.repos.d/docker-ce.repo | |
# install specific docker version | |
yum install -y docker-ce-18.09.2-3.el7 |
View aibSigRole.json
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
{ | |
"Name": "AIB Custom Role", | |
"IsCustom": true, | |
"Description": "Azure Image Builder access to create resources for the image build", | |
"Actions": [ | |
"Microsoft.Compute/galleries/read", | |
"Microsoft.Compute/galleries/images/read", | |
"Microsoft.Compute/galleries/images/versions/read", | |
"Microsoft.Compute/galleries/images/versions/write", | |
"Microsoft.Compute/images/write", |
View basis-network-security.sh
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
############################################ | |
# Shell script to enhance basic network | |
# security | |
############################################ | |
# Enable TCP SYN cookie protection | |
echo "" >> /etc/sysctl.conf | |
echo "# Enable TCP SYN cookie protection" >> /etc/sysctl.conf | |
echo "net.ipv4.tcp_syncookies = 1" >> /etc/sysctl.conf |
View mngImgLinux.json
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
{ | |
"type": "Microsoft.VirtualMachineImages/imageTemplates", | |
"apiVersion": "2019-05-01-preview", | |
"location": "<location>", | |
"dependsOn": [], | |
"tags": { | |
"imagebuilderTemplate": "ubuntu1804", | |
"userIdentity": "enabled" | |
}, |
View aibRoleBasic.json
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
{ | |
"Name": "AIB Custom Role", | |
"IsCustom": true, | |
"Description": "Azure Image Builder access to create resources for the image build", | |
"Actions": [ | |
"Microsoft.Compute/images/write", | |
"Microsoft.Compute/images/read", | |
"Microsoft.Compute/images/delete" | |
], | |
"NotActions": [ |
View haproxy.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
#--------------------------------------------------------------------- | |
# Global settings | |
#--------------------------------------------------------------------- | |
global | |
log 127.0.0.1 local2 | |
chroot /var/lib/haproxy | |
pidfile /var/run/haproxy.pid | |
maxconn 4000 | |
user haproxy | |
group haproxy |