Max Ehrlich
858f92d698
Regenerate docs and show setting organization in the CA example
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-09-08 16:21:13 -04:00
jetstack-bot
141f29864e
Merge pull request #876 from munnerz/kind-builds
...
Use kind for e2e tests and add e2e testing documentation
2018-09-07 23:20:47 +01:00
James Munnelly
2c3b70428d
Add doc on running end to end tests
...
Signed-off-by: James Munnelly <james@munnelly.eu>
2018-09-07 19:55:52 +01:00
Fulton Byrne
21aa7eed28
doc: add minimal ingress-shim example
...
Signed-off-by: Fulton Byrne <fulton.byrne@commercetools.de>
2018-09-07 09:33:51 -04:00
James Munnelly
ae122766fb
Regenerate reference docs
...
Signed-off-by: James Munnelly <james.munnelly@jetstack.io>
2018-08-20 12:36:36 +01:00
James Munnelly
e77eacdcec
Update upgrading docs
...
Update docs
Signed-off-by: James Munnelly <james.munnelly@jetstack.io>
2018-08-20 12:36:35 +01:00
jetstack-bot
972f86704d
Merge pull request #787 from Queuecumber/master
...
Add ACME-DNS as a DNS-01 Provider
2018-08-17 13:33:57 +01:00
James Munnelly
5ea2c6843e
Regenerate reference docs
...
Signed-off-by: James Munnelly <james.munnelly@jetstack.io>
2018-08-14 10:32:50 +01:00
Max Ehrlich
eb92de2577
More in-depth example going with curl and the API directly
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:32:14 -04:00
Max Ehrlich
b1eadabf42
Change wording from "accounts" to "account"
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:32:14 -04:00
Max Ehrlich
9a0b1d8f56
Docs needed more updating
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:32:14 -04:00
Max Ehrlich
8f05340211
Should be double quotes
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:32:13 -04:00
Max Ehrlich
2da7fa7261
Add documentation for acme-dns
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:31:43 -04:00
Max Ehrlich
f7a42fb9fd
Add acme-dns issuer config to the issuer definition and update docs
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:30:33 -04:00
Max Ehrlich
9902845c82
Add acmedns constructor to dns interface
...
Signed-off-by: Max Ehrlich <max.ehr@gmail.com>
2018-08-13 13:30:33 -04:00
jetstack-bot
24293fddf3
Merge pull request #824 from munnerz/dco
...
Add details on DCO sign-off
2018-08-13 17:04:09 +01:00
James Munnelly
ce21b2a260
Add details on DCO sign-off
...
Signed-off-by: James Munnelly <james.munnelly@jetstack.io>
2018-08-13 16:09:02 +01:00
James Munnelly
51195e4c5f
Update license header and add header to every file
...
Signed-off-by: James Munnelly <james.munnelly@jetstack.io>
2018-08-13 15:53:37 +01:00
jetstack-bot
494cad1e63
Merge pull request #802 from jetstack/munnerz-patch-3
...
Update project statement in DNS01 examples
2018-08-08 13:24:24 +01:00
jetstack-bot
9205c14bf6
Merge pull request #772 from kragniz/dns01-provider-docs
...
Add documentation on creating DNS01 providers
2018-08-08 13:10:12 +01:00
James Munnelly
07e6ffeb4e
Update project statement in DNS01 examples
2018-08-08 12:51:03 +01:00
James Munnelly
3e95b9410c
Update generated files
2018-08-07 14:16:49 +01:00
Louis Taylor
86ce5a7823
Add extra guidelines
2018-07-27 12:53:46 +01:00
Louis Taylor
9b6be1c8db
Add documentation on creating DNS01 providers
2018-07-26 17:05:10 +01:00
James Munnelly
fcf812c654
Add OWNERS files to auto-label PRs. Mark apis directory as requiring a review by @munnerz.
2018-07-26 13:01:58 +01:00
Louis Taylor
99c1d4271f
Add note about http01 and wildcard certificates
...
Fixes #757 .
2018-07-25 11:30:53 +01:00
leigh schrandt
39e071aa7a
Document project field for Google CloudDNS provider
...
👋
2018-07-24 00:05:35 -07:00
jetstack-bot
840f9de7d9
Merge pull request #734 from timuthy/master
...
Improve ACME DNS validation tutorial
2018-07-19 10:25:41 +01:00
jetstack-bot
6348c6ffca
Merge pull request #722 from autonomic-ai/support-ec-keys
...
Add keyAlgorithm and keySize fields to Certificates, and support ECDSA keys
2018-07-18 10:00:36 +01:00
Afolabi Badmos
445e522432
Add support for EC keys
...
- This PR adds two fields to CertificateSpec:
- `keyAlgorithm`, denotes which algorithm to use when generating
a private key. Can be either `rsa` or `ecdsa`. When not set, the
default algorithm used `rsa`.
- `keySize`, denotes the key size of the private key being generated.
For `rsa`, minimum key size is 2048 and maximum is 8192.
For `ecdsa`, sizes 224, 256, 384 & 521 are supported.
See https://golang.org/pkg/crypto/elliptic
- `keySize` can be set without being explicit about `keyAlgorithm`.
- If `keySize` is specified and `keyAlgorithm` is not provided, `rsa` will
be used as the key algorithm.
- `keyAlgorithm` can be set without being explicit about `keySize`.
- If `keyAlgorithm` is specified and `keySize` is not provided, key size
key size of `256` will be used for `ecdsa` key algorithm and
key size of `2048` will be used for `rsa` key algorithm.
- helper functions in `pki` package now return crypto.PrivateKey
2018-07-17 12:42:07 -04:00
Tim Usner
fa6f1bde12
Fix broken link for SAN
2018-07-17 13:04:23 +02:00
Tim Usner
92cb56746d
Add *.example.com to SAN
...
*.example.com is set as Common Name and thus part of SANs.
2018-07-17 13:02:27 +02:00
James Munnelly
c8ad744392
Add link to selfsigned issuer docs
2018-07-12 18:17:40 +01:00
test@test.com
cb7eaf986f
Run hack/update-reference-docs.sh
2018-07-11 16:02:23 +00:00
Vincent Desjardins
7fae0fccf1
code review fixes
2018-07-11 16:00:39 +00:00
Vincent Desjardins
2995cc90a3
Vault: configurable appRole authentication path
2018-07-11 16:00:39 +00:00
jetstack-bot
bd7f15d5f4
Merge pull request #710 from kragniz/dns-flag
...
Add flag for setting nameservers for DNS01 check
2018-07-11 14:26:33 +01:00
Louis Taylor
4653d456ec
docs: fix api version in issuer example resources
2018-07-06 16:07:55 +01:00
jetstack-bot
8c1e0c9fcd
Merge pull request #507 from madmod/patch-1
...
Fix AWS DNS policy example
2018-07-05 21:01:31 +01:00
James Munnelly
95000f1937
Run hack/update-reference-docs-dockerized.sh
2018-07-05 14:47:36 +01:00
James Munnelly
3fc5bf539f
Include reference docs in sphinx site
2018-07-05 14:47:35 +01:00
James Munnelly
2014183a57
Add script for generating reference docs
2018-07-05 14:47:32 +01:00
Louis Taylor
ea6a5472e2
dns01-nameservers -> dns01-self-check-nameservers
2018-07-05 14:22:43 +01:00
Louis Taylor
d8f0419851
Add example to docs
2018-07-05 14:18:58 +01:00
Louis Taylor
c1ec835202
Add note to docs
2018-07-05 12:51:59 +01:00
Pieter Lange
04e7857519
Add doc on secret references for cluster issuers
2018-07-02 17:14:07 +02:00
John Wells
7ad604cdc7
Fix IAM policy warnings
2018-06-18 13:53:09 -06:00
James Munnelly
e40f515fd4
Address review feedback
2018-06-15 14:06:21 +01:00
James Munnelly
8b2ffbd2bc
Add docs on selfsigned Issuer
2018-06-08 15:48:30 +01:00
JrCs
bafd0f2986
Vault issuer MUST USE the vault 'sign' endpoint
2018-06-06 13:24:15 +02:00