Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ which authenticates itself with the Kubernetes API and proxies requests from you
[Pipeline] echo
To access your environment run `kubectl proxy`
[Pipeline] echo
Then access your service via http://localhost:8001/api/v1/proxy/namespaces/new-feature/services/gceme-frontend:80/
Then access your service via http://localhost:8001/api/v1/namespaces/new-feature/services/gceme-frontend:80/proxy/
[Pipeline] }
```

Expand All @@ -484,7 +484,7 @@ which authenticates itself with the Kubernetes API and proxies requests from you
1. Return to the original shell, and access your application via localhost:

```shell
$ curl http://localhost:8001/api/v1/proxy/namespaces/new-feature/services/gceme-frontend:80/
$ curl http://localhost:8001/api/v1/namespaces/new-feature/services/gceme-frontend:80/proxy/
```

1. You can now push code to the `new-feature` branch in order to update your development environment.
Expand Down
2 changes: 1 addition & 1 deletion sample-app/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ spec:
sh("kubectl --namespace=${env.BRANCH_NAME} apply -f k8s/services/")
sh("kubectl --namespace=${env.BRANCH_NAME} apply -f k8s/dev/")
echo 'To access your environment run `kubectl proxy`'
echo "Then access your service via http://localhost:8001/api/v1/proxy/namespaces/${env.BRANCH_NAME}/services/${feSvcName}:80/"
echo "Then access your service via http://localhost:8001/api/v1/namespaces/${env.BRANCH_NAME}/services/${feSvcName}:80/proxy/"
}
}
}
Expand Down