- Getting Started with Bootstrap 4 using Barrio in Drupal 8 - Youtube
- Bootstrap 4 Theme Customization with Sass - YouTube
- Bootstrap 4 Barrio Theme
- Bootstrap 4 Barrio Theme Installation
- [Creating a custom Barrio sub-theme][subtheme]
- Bootstrap 4 Barrio SASS Starter Kit
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
kubectl delete "$(kubectl api-resources --namespaced=true --verbs=delete -o name | tr "\n" "," | sed -e 's/,$//')" --all |
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
FROM ubuntu:14.04 | |
# install nginx | |
RUN apt-get update && \ | |
apt-get install software-properties-common -y && \ | |
add-apt-repository ppa:nginx/stable -y && \ | |
apt-get update && \ | |
apt-get install -y nginx=1.12.2-0+trusty0 | |
RUN rm -rf /etc/nginx/sites-enabled/default |
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
#!/bin/sh | |
# Launch a Pod ab-using a hostPath mount to land on a Kubernetes node cluster as root | |
# without requiring `privileged: true`, in particular can abuse `DenyExecOnPrivileged` | |
# admission controller. | |
# Pod command in turn runs a privileged container using node's /var/run/docker.sock. | |
node=${1} | |
case "${node}" in | |
"") | |
nodeSelector='' | |
podName=${USER+${USER}-}docker-any |
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 | |
# Set the hostname for this machine (takes precedence over hostname assigned by DHCP lease). | |
hostname: myhost | |
# Authorize SSH keys for the `rancher` sudoer user | |
ssh_authorized_keys: | |
- ssh-rsa AAA...ZZZ example1@rancher | |
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
RewriteRule "(^|/)\.(?!well-known\/)" - [F] |
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
--- | |
image: 'williamyeh/ansible:centos7' | |
variables: | |
ANSIBLE_ROLES_PATH: './roles/' | |
ANSIBLE_VAULT_PASSWORD_FILE: '/root/.ssh/vault.sh' | |
ANSIBLE_TIMEOUT: 60 # some systems are very slow to establish ssh connection | |
before_script: | |
- "ansible --version" # for verbosity |