-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from embik/rework-kind-setup
Rework kind setup by removing Ingress and embedded etcd
- Loading branch information
Showing
8 changed files
with
42 additions
and
59 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
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 |
---|---|---|
@@ -1,19 +1,26 @@ | ||
externalHostname: "kcp.dev.local" | ||
externalPort: "8443" | ||
etcd: | ||
enabled: false | ||
resources: | ||
requests: | ||
memory: 256Mi | ||
certificates: | ||
dnsNames: | ||
- localhost | ||
- kcp.dev.local | ||
kcp: | ||
# tag is set via --set flag to make it more dynamic for testing purposes | ||
volumeClassName: "standard" | ||
tokenAuth: | ||
enabled: true | ||
etcd: | ||
serverAddress: embedded | ||
kcpFrontProxy: | ||
# tag is set via --set flag to make it more dynamic for testing purposes | ||
openshiftRoute: | ||
enabled: false | ||
ingress: | ||
hostAliases: | ||
enabled: true | ||
annotations: | ||
kubernetes.io/ingress.class: "nginx" | ||
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" | ||
values: | ||
- ip: "10.96.0.100" | ||
hostnames: | ||
- "kcp.dev.local" | ||
kcpFrontProxy: | ||
service: | ||
type: NodePort | ||
nodePort: 31443 | ||
clusterIP: "10.96.0.100" |
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