Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include CONTRIBUTING.md into gh-pages publishing #190

Merged
merged 2 commits into from Oct 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/gh-pages.yaml
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
paths:
- 'README.md'
- '**.md'
- 'docs/**'

jobs:
Expand All @@ -19,6 +19,7 @@ jobs:
run: |
git checkout gh-pages
git checkout ${GITHUB_REF##*/} README.md
git checkout ${GITHUB_REF##*/} CONTRIBUTING.md
git checkout ${GITHUB_REF##*/} docs
- name: Push to gh-pages
uses: EndBug/add-and-commit@v5
Expand Down
9 changes: 9 additions & 0 deletions .spelling
Expand Up @@ -74,6 +74,10 @@ powergslb
f5
dtc
vSphere
AbsaOSS
LGTM
terratest
golang
- docs/index.md
1.2
1.3
Expand All @@ -86,3 +90,8 @@ vSphere
3.3
80
20
- CONTRIBUTING.md
kubernetes.slack.com
local.md
70
80
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -37,7 +37,7 @@ Thanks for contributing!

- [Debugging](#debugging)

## Debugging
### Debugging

Delve debugger needs to be installed first. Follow the [installation instructions](https://github.com/go-delve/delve/tree/master/Documentation/installation) for specific platforms from Delve's website.

Expand Down
8 changes: 4 additions & 4 deletions docs/deploy_infoblox.md
Expand Up @@ -273,16 +273,16 @@ dig +short podinfo.cloud.example.com
* And for the final end-to-end test, we can use `curl` to query the application
```sh
curl -s podinfo.example.com|grep message
"message": "\"eu\"",
"message": "eu",

curl -s podinfo.example.com|grep message
"message": "\"us\"",
"message": "us",

curl -s podinfo.example.com|grep message
"message": "\"us\"",
"message": "us",

curl -s podinfo.example.com||grep message
"message": "\"eu\"",
"message": "eu",
```

* As you can see specially marked `podinfo` returns different geo tags showing us the Global Round Robin strategy is working as expected
Expand Down