-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: restructure for metallb and certmanager
- Loading branch information
1 parent
2d7001d
commit 4e10a8d
Showing
13 changed files
with
269 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
rabbitMQUsername: lagoon | ||
rabbitMQPassword: ci | ||
rabbitMQHostname: lagoon-core-broker | ||
rabbitMQHostname: lagoon-core-broker.lagoon-core.svc | ||
lagoonTargetName: ci-local-control-k8s | ||
sshPortalHost: lagoon-remote-ssh-portal.lagoon.svc | ||
sshPortalPort: 22 | ||
lagoonTokenHost: lagoon-core-token.lagoon.svc | ||
lagoonTokenHost: lagoon-core-token.lagoon-core.svc | ||
lagoonTokenPort: 22 | ||
lagoonAPIHost: http://lagoon-core-api.lagoon.svc:80 | ||
lagoonAPIHost: http://lagoon-core-api.lagoon-core.svc:80 | ||
extraArgs: | ||
- "--skip-tls-verify=true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: selfsigned-issuer | ||
spec: | ||
selfSigned: {} | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: lagoon-testing-ca | ||
namespace: cert-manager | ||
spec: | ||
isCA: true | ||
commonName: lagoon.test | ||
subject: | ||
organizations: | ||
- Lagoon Testing Inc | ||
organizationalUnits: | ||
- Lagoon | ||
dnsNames: | ||
- lagoon.test | ||
secretName: lagoon-test-secret | ||
privateKey: | ||
algorithm: ECDSA | ||
size: 256 | ||
issuerRef: | ||
name: selfsigned-issuer | ||
kind: ClusterIssuer | ||
group: cert-manager.io | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: ClusterIssuer | ||
metadata: | ||
name: lagoon-testing-issuer | ||
spec: | ||
ca: | ||
secretName: lagoon-test-secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: metallb.io/v1beta1 | ||
kind: IPAddressPool | ||
metadata: | ||
creationTimestamp: null | ||
name: default | ||
namespace: metallb-system | ||
spec: | ||
addresses: | ||
- ${LAGOON_KIND_NETWORK_RANGE} | ||
--- | ||
apiVersion: metallb.io/v1beta1 | ||
kind: L2Advertisement | ||
metadata: | ||
creationTimestamp: null | ||
name: l2advertisement1 | ||
namespace: metallb-system | ||
spec: | ||
ipAddressPools: | ||
- default | ||
|