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

feat: Support to ory hydra running in secure mode #62

Merged
merged 29 commits into from
May 10, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6491a99
Support to ory hydra running in secure mode
fjvierap Dec 18, 2020
d769f7d
feat: adjust readme
fjvierap Dec 18, 2020
daf5c44
Add namespace bases roles instead of cluster
fjvierap Feb 11, 2021
7d66a70
Add log message when enable insecure skip verify
fjvierap Apr 23, 2021
d90f5a9
Add setup log for insecure verify
fjvierap Apr 23, 2021
509ee6a
Adjust README.md
fjvierap Apr 23, 2021
90f8234
Merge remote-tracking branch 'origin/master' into namespace
fjvierap Apr 23, 2021
715ee4a
Add error for not existent tls trust store
fjvierap Apr 28, 2021
51a4e30
Merge pull request #1 from fjvierap/namespace
fjvierap Apr 28, 2021
e16c267
Adjust rbac
fjvierap Apr 28, 2021
b75d417
Add unit test for create http client
fjvierap May 5, 2021
5364f44
Remove HydraClientMaker
fjvierap May 5, 2021
d403834
Improve error handling
fjvierap May 10, 2021
d12ad0a
Add helpers to makefile for testing that package
fjvierap May 10, 2021
9b8f463
build: update CRDs and k8s dependencies (#68)
colunira May 10, 2021
9d56503
docs: Incorporates changes from version v0.0.20
May 10, 2021
14611a8
Support to ory hydra running in secure mode
fjvierap Dec 18, 2020
7f2bf13
feat: adjust readme
fjvierap Dec 18, 2020
cde714e
Add namespace bases roles instead of cluster
fjvierap Feb 11, 2021
bbd2830
Add log message when enable insecure skip verify
fjvierap Apr 23, 2021
a210259
Add setup log for insecure verify
fjvierap Apr 23, 2021
00d3a80
Adjust README.md
fjvierap Apr 23, 2021
1ff476c
Add error for not existent tls trust store
fjvierap Apr 28, 2021
b8622e0
Adjust rbac
fjvierap Apr 28, 2021
ba61fce
Add unit test for create http client
fjvierap May 5, 2021
9c5a153
Remove HydraClientMaker
fjvierap May 5, 2021
27558c3
Improve error handling
fjvierap May 10, 2021
aaf8870
Add helpers to makefile for testing that package
fjvierap May 10, 2021
80230cd
Merge branch 'master' of https://github.com/fjvierap/hydra-maester
fjvierap May 10, 2021
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
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ To deploy the controller, edit the value of the ```--hydra-url``` argument in th

### Command-line flags

| Name | Required | Description | Default value | Example values |
|-----------------|----------|------------------------------|---------------|------------------------------------------------------|
| **hydra-url** | yes | ORY Hydra's service address | - | ` ory-hydra-admin.ory.svc.cluster.local` |
| **hydra-port** | no | ORY Hydra's service port | `4445` | `4445` |
| Name | Required | Description | Default value | Example values |
|----------------------------|----------|----------------------------------------|---------------|------------------------------------------------------|
| **hydra-url** | yes | ORY Hydra's service address | - | ` ory-hydra-admin.ory.svc.cluster.local` |
| **hydra-port** | no | ORY Hydra's service port | `4445` | `4445` |
| **tls-trust-store** | no | TLS cert path for hydra client | - | `/etc/ssl/certs/ca-certificates.crt` |
| **insecure-skip-verify** | no | Skip http client insecure verification | `false` | `true` or `false` |
fjvierap marked this conversation as resolved.
Show resolved Hide resolved

## Development

Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ go 1.13

require (
github.com/go-logr/logr v0.1.0
github.com/go-openapi/runtime v0.19.24
github.com/onsi/ginkgo v1.6.0
github.com/onsi/gomega v1.4.2
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.3.0
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd
github.com/stretchr/testify v1.6.1
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b
k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
Expand Down
Loading