This file contains hidden or 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: | |
appConfig: | |
ldap: | |
preventSignin: false | |
servers: | |
main: | |
active_directory: true | |
allow_username_or_email_login: true | |
base: 'DC=my_domain,DC=net' | |
bind_dn: 'CN=gitlab,DC=my_domain,DC=foo,DC=bar' |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
--------- beginning of main | |
03-02 13:01:08.616 214 214 W auditd : type=2000 audit(0.0:1): initialized | |
03-02 13:01:10.803 214 214 I auditd : type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295 | |
03-02 13:01:11.113 1 1 I init : type=1400 audit(0.0:3): avc: denied { open } for path="/proc/cpu/alignment" dev="proc" ino=4026531950 scontext=u:r:init:s0 tcontext=u:object_r:proc:s0 tclass=file permissive=1 | |
03-02 13:01:11.286 211 211 I e2fsck : type=1400 audit(0.0:4): avc: denied { read } for name="mmcblk1p19" dev="tmpfs" ino=584 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1 | |
03-02 13:01:11.286 211 211 I e2fsck : type=1400 audit(0.0:5): avc: denied { open } for path="/dev/block/mmcblk1p19" dev="tmpfs" ino=584 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1 | |
03-02 13:01:11.286 211 211 I e2fsck : type=1400 audit(0.0:6): avc: denied { write } for name="mmcblk1p19" dev="tmpfs" ino=584 scontext=u:r |
This file contains hidden or 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
token="YOUR_TOKEN" | |
domains="yourdomain1.com yourdomain2.com" | |
zones=$(curl -s \ | |
-H "Authorization: Bearer $token" \ | |
-H "Accept: application/json" \ | |
https://dynv6.com/api/v2/zones) | |
for domain in $domains; do | |
zoneid=$(jq ".[] | select(.name==\"$domain\") | .id" <<< $zones) |
This file contains hidden or 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
local-hostname: cloud-init-01 | |
instance-id: template |
This file contains hidden or 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
#cloud-config | |
network: | |
version: 2 | |
ethernets: | |
# opaque ID for physical interfaces, only referred to by other stanzas | |
id0: | |
dhcp4: false | |
addresses: | |
- 172.25.150.11/24 | |
gateway4: 172.25.150.1 |
This file contains hidden or 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
#cloud-config | |
network: | |
version: 2 | |
ethernets: | |
# opaque ID for physical interfaces, only referred to by other stanzas | |
id0: | |
dhcp4: false | |
addresses: | |
- 172.25.150.11/24 | |
gateway4: 172.25.150.1 |
This file contains hidden or 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
--- | |
replicas: 2 | |
# Allows you to add any config files in /usr/share/logstash/config/ | |
# such as logstash.yml and log4j2.properties | |
# | |
# Note that when overriding logstash.yml, `http.host: 0.0.0.0` should always be included | |
# to make default probes work. | |
logstashConfig: | |
logstash.yml: | |
This file contains hidden or 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
--- | |
replicas: 2 | |
# Allows you to add any config files in /usr/share/logstash/config/ | |
# such as logstash.yml and log4j2.properties | |
# | |
# Note that when overriding logstash.yml, `http.host: 0.0.0.0` should always be included | |
# to make default probes work. | |
logstashConfig: | |
logstash.yml: | |
This file contains hidden or 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
--- | |
elasticsearchHosts: "https://logsys-ingest.elasticsearch:9200" | |
replicas: 2 | |
# Extra environment variables to append to this nodeGroup | |
# This will be appended to the current 'env:' key. You can use any of the kubernetes env | |
# syntax here | |
extraEnvs: | |
- name: "NODE_OPTIONS" |