I hereby claim:
- I am pires on github.
- I am pires (https://keybase.io/pires) on keybase.
- I have a public key whose fingerprint is 5184 6FFF BDE8 700D 43EB D33F D561 A571 7E43 56B0
To claim this, I am signing this object:
| # https://github.com/gpakosz/.tmux | |
| # (‑●‑●)> dual licensed under the WTFPL v2 license and the MIT license, | |
| # without any warranty. | |
| # Copyright 2012— Gregory Pakosz (@gpakosz). | |
| # -- navigation ---------------------------------------------------------------- | |
| # if you're running tmux within iTerm2 | |
| # - and tmux is 1.9 or 1.9a |
I hereby claim:
To claim this, I am signing this object:
| kube-apiserver \ | |
| --allow_privileged=true \ | |
| --insecure_bind_address=0.0.0.0 \ | |
| --insecure_port=8080 \ | |
| --kubelet_https=true \ | |
| --secure_port=6443 \ | |
| --portal_net=10.100.0.0/16 \ | |
| --etcd_servers=http://127.0.0.1:4001 \ | |
| --public_address_override=172.17.8.101 \ | |
| --cloud_provider=__CLOUDPROVIDER__ |
| #cloud-config | |
| coreos: | |
| units: | |
| - name: etcd.service | |
| mask: true | |
| - name: fleet.service | |
| command: start | |
| content: | | |
| [Unit] |
| #cloud-config | |
| --- | |
| write_files: | |
| - path: /opt/bin/waiter.sh | |
| owner: root | |
| content: | | |
| #! /usr/bin/bash | |
| until curl http://127.0.0.1:4001/v2/machines; do sleep 2; done | |
| coreos: |
| #!/bin/bash | |
| # Nice reference: https://developers.google.com/compute/docs/images#buildingimage | |
| # Would be even nicer if Google would use it in their own debian images. | |
| echo "Running provisioner" | |
| # Update APT cache, upgrade packages | |
| apt-get update && apt-get -yq dist-upgrade |
| package utils; | |
| import java.io.UnsupportedEncodingException; | |
| import java.util.Enumeration; | |
| import java.util.PropertyResourceBundle; | |
| import java.util.ResourceBundle; | |
| /** | |
| * UTF-8 friendly ResourceBundle support | |
| * |
| # Mongo DB options, configure these if you are using the "mongo" option for one of your stores | |
| mongoDbHost=127.0.0.1 | |
| mongoDbPort=27018 | |
| mongoDbDatabase=db_test |
| public class GenericObdCommand extends ObdCommand { | |
| /** | |
| * Default ctor. | |
| */ | |
| public GenericObdCommand(String bytes) { | |
| super(bytes); | |
| } | |
| /** |