Merge pull request #1528 from jessfraz/turn-on-travis-for-preformat-balance

turn on travis for preformat balance
This commit is contained in:
Daniel Smith 2017-01-27 13:57:59 -08:00 committed by GitHub
commit 9a3fc802de
4 changed files with 9 additions and 6 deletions

View File

@ -16,8 +16,10 @@ install:
- cp -r $GOPATH/src/k8s.io/kubernetes/vendor/* $GOPATH/src/ - cp -r $GOPATH/src/k8s.io/kubernetes/vendor/* $GOPATH/src/
- rm -rf $GOPATH/src/k8s.io/kubernetes/vendor/* - rm -rf $GOPATH/src/k8s.io/kubernetes/vendor/*
- cp -r $GOPATH/src/k8s.io/kubernetes/staging/src/* $GOPATH/src/ - cp -r $GOPATH/src/k8s.io/kubernetes/staging/src/* $GOPATH/src/
- go get -v k8s.io/kubernetes/cmd/mungedocs
script: script:
- go test -v k8s.io/kubernetes.github.io/test - go test -v k8s.io/kubernetes.github.io/test
- $GOPATH/bin/md-check --root-dir=$HOME/gopath/src/k8s.io/kubernetes.github.io - $GOPATH/bin/md-check --root-dir=$HOME/gopath/src/k8s.io/kubernetes.github.io
- ./verify-docs-format.sh - ./verify-docs-format.sh
- $GOPATH/bin/mungedocs --verbose --verify --upstream=origin --root-dir=$HOME/gopath/src/k8s.io/kubernetes.github.io/docs/ --repo-root=$HOME/gopath/src/k8s.io/kubernetes.github.io --skip-munges=remove-whitespace,blank-lines-surround-preformatted,header-lines,sync-examples,analytics,analytics,kubectl-dash-f,table-of-contents,md-links,kubectl-dash-f

View File

@ -465,6 +465,7 @@ subjects:
name: system:authenticated name: system:authenticated
- kind: Group - kind: Group
name: system:unauthenticated name: system:unauthenticated
```
## Webhook Mode ## Webhook Mode

View File

@ -76,7 +76,8 @@ kubectl get [(-o|--output=)json|yaml|wide|custom-columns=...|custom-columns-file
# List one or more resources by their type and names. # List one or more resources by their type and names.
kubectl get rc/web service/frontend pods/web-pod-13je7 kubectl get rc/web service/frontend pods/web-pod-13je7
{% endraw %}``` {% endraw %}
```
### Options ### Options

View File

@ -77,7 +77,6 @@ Here are some ideas for how to use init containers:
- Clone a git repository into a volume - Clone a git repository into a volume
- Place values like a POD_IP into a configuration file, and run a template tool (e.g. jinja) - Place values like a POD_IP into a configuration file, and run a template tool (e.g. jinja)
to generate a configuration file to be consumed by the main app contianer. to generate a configuration file to be consumed by the main app contianer.
```
Complete usage examples can be found in the [StatefulSets Complete usage examples can be found in the [StatefulSets
documentation](/docs/concepts/abstractions/controllers/statefulsets/) and the [Production Pods documentation](/docs/concepts/abstractions/controllers/statefulsets/) and the [Production Pods