Merge pull request #1528 from jessfraz/turn-on-travis-for-preformat-balance
turn on travis for preformat balance
This commit is contained in:
commit
9a3fc802de
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue