Skip to content
This repository has been archived by the owner on Dec 21, 2019. It is now read-only.

Commit

Permalink
Release version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tazjin committed Sep 18, 2016
1 parent fde93d7 commit 5dfd5a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>letsencrypt-controller</artifactId>
<groupId>in.tazj.k8s</groupId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/in/tazj/k8s/letsencrypt/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public static void main(String[] args) {
final KubernetesClient client = new DefaultKubernetesClient();
final CertificateManager certificateManager = new CertificateManager(client);
final KeyPairManager keyPairManager = KeyPairManager.with(client);
final String acmeUrl = "https://acme-staging.api.letsencrypt.org/directory";
final String acmeUrl = "https://acme-v01.api.letsencrypt.org/directory";

final CertificateRequestHandler requestHandler =
new CertificateRequestHandler(acmeUrl, keyPairManager, new Route53Responder());

Expand Down

0 comments on commit 5dfd5a6

Please sign in to comment.