service.beta.kubernetes.io/aws-load-balancer-access-log-emit-interval(in minutes)service.beta.kubernetes.io/aws-load-balancer-access-log-enabled(true|false)service.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-nameservice.beta.kubernetes.io/aws-load-balancer-access-log-s3-bucket-prefixservice.beta.kubernetes.io/aws-load-balancer-additional-resource-tags(comma-separated list of key=value)service.beta.kubernetes.io/aws-load-balancer-backend-protocol(http|https|ssl|tcp)service.beta.kubernetes.io/aws-load-balancer-connection-draining-enabled(true|false)
| #!/bin/bash | |
| cd "$(git rev-parse --show-toplevel)" | |
| ESLINT="node_modules/.bin/eslint" | |
| pwd | |
| if [[ ! -x "$ESLINT" ]]; then | |
| printf "\t\033[41mPlease install ESlint\033[0m (npm install eslint)\n" | |
| exit 1 | |
| fi |
This gist will drive you through creating a Docker 1.12 Swarm cluster (with Swarm mode) on AWS infrastructure.
You need a few things already prepared in order to get started. You need at least Docker 1.12 set up. I was using the stable version of Docker for mac for preparing this guide.
$ docker --version
Docker version 1.12.0, build 8eab29e
You also need Docker machine installed.
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
If anyone is interested in setting up their system to automatically (or manually) sign their git commits with their GPG key, here are the steps:
- Generate and add your key to GitHub
$ git config --global commit.gpgsign true([OPTIONAL] every commit will now be signed)$ git config --global user.signingkey ABCDEF01(whereABCDEF01is the fingerprint of the key to use)$ git config --global alias.logs "log --show-signature"(now available as$ git logs)$ git config --global alias.cis "commit -S"(optional if global signing is false)$ echo "Some content" >> example.txt$ git add example.txt$ git cis -m "This commit is signed by a GPG key."(regularcommitwill work if global signing is enabled)
| CREATE OR REPLACE FUNCTION max (uuid, uuid) | |
| RETURNS uuid AS $$ | |
| BEGIN | |
| IF $1 IS NULL OR $1 < $2 THEN | |
| RETURN $2; | |
| END IF; | |
| RETURN $1; | |
| END; | |
| $$ LANGUAGE plpgsql; |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
- The badges do not fully replace the license informations for your projects, they are only emblems for the README, that the user can see the License at first glance.
Translations: (No guarantee that the translations are up-to-date)
๊น์ ์ฌ์ฉํฉ์๋ค. ๊น์ ์ฐ์. ๊น์ ์ฐ๋ ๋ง์ผ!!
-
SVN์ ๋ณ๊ฒฝ์ด๋ ฅ์ด ๋ง์์ง์๋ก ์๋๊ฐ ๋๋ฆฌ์ง.
-
์ปค๋ฐ ๋ฐ ์ฒ๋ฆฌ์๋๊ฐ ๋น ๋ฅด๋ค. ๋ณ๊ฒฝ์ด๋ ฅ์ด ๋ง์ด ์ถ์ ๋์ด ์์ด๋ ์๋์ ํ๊ฐ ๊ฑฐ์ ์๋ค.
-
-
์ปค๋ฐ์ฐ๊ธฐ๊ฐ ์ด๋ ต๋ค.
| codecov: | |
| token: uuid # Your private repository token | |
| url: "http" # for Codecov Enterprise customers | |
| slug: "owner/repo" # for Codecov Enterprise customers | |
| branch: master # override the default branch | |
| bot: username # set user whom will be the consumer of oauth requests | |
| ci: # Custom CI domains if Codecov does not identify them automatically | |
| - ci.domain.com | |
| - !provider # ignore these providers when checking if CI passed | |
| # ex. You may test on Travis, Circle, and AppVeyor, but only need |
