git clone https://github.com/GPII/universal
rm -rf node_modules
time npm install
- Run #1 - 3m3s (cold cache)
FROM centos:7 | |
EXPOSE 8080 | |
RUN yum -y install epel-release | |
RUN yum -y install python-cherrypy | |
COPY hackme.py /tmp/ | |
CMD ["/usr/bin/python", "/tmp/hackme.py"] |
kubernetes-client - Kubernetes client tools | |
/usr/bin/kubectl | |
kubernetes-master - Kubernetes services for master host | |
/etc/kubernetes | |
/etc/kubernetes/apiserver | |
/etc/kubernetes/config (**) | |
/etc/kubernetes/controller-manager |
#!/usr/bin/env bash | |
set -o errexit | |
set -o pipefail | |
set -o xtrace | |
LOCKFILE="${PWD}/$(basename "$0").lock" | |
LOCKFD=99 | |
_lock() { flock -"$1" "$LOCKFD"; } |
https://github.com/github/roadmap/issues/51 | |
https://github.com/github/roadmap/issues/52 | |
https://github.com/github/roadmap/issues/59 | |
https://github.com/github/roadmap/issues/75 | |
https://github.com/github/roadmap/issues/78 | |
https://github.com/github/roadmap/issues/88 | |
https://github.com/github/roadmap/issues/96 | |
https://github.com/github/roadmap/issues/98 | |
https://github.com/github/roadmap/issues/99 |
This was only tested on Fedora 35 with systemd but should work on any WSL distribution that uses systemd.
Install the Dropbox headless client:
$ cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
Install the Dropbox manager script into your ~/bin
folder:
If you have a LUKS-encrypted partition on another disk, it's easy to mount it inside WSL.
List your disks:
> wmic diskdrive list brief
Mount the whole disk inside WSL (using --bare
so WSL doesn't attempt to mount it automatically):
This is a plugin that verifies if the Ansible version meets the version requirements.
You can use the same range identifiers from Ansible Galaxy, separate by commas:
*: The most recent version. This is the default.
!=: Not equal to the version specified.
==: Exactly the version specified.
- hosts: all | |
gather_facts: false | |
become: false | |
tasks: | |
- name: Populate ~/.ssh/known_hosts | |
delegate_to: localhost | |
known_hosts: | |
key: "{{ lookup('pipe', 'ssh-keyscan ' + inventory_hostname + ' 2>/dev/null') }}" | |
name: "{{ inventory_hostname }}" |