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

Made k3s documentation a little clearer about starting the container #5175

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/modules/k3s.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ This may be used with Kubernetes clients - e.g. for the [official Java client](c

* k3s containers may be unable to run on host machines where `/var/lib/docker` is on a BTRFS filesystem. See [k3s-io/k3s#4863](https://github.com/k3s-io/k3s/issues/4863) for an example.

* You may experience PKIX exceptions when trying to use a configured Fabric8 client. This is down to newer distributions of k3s issuing elliptic curve keys.
This can be fixed by adding [BouncyCastle PKI library](https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on) to your classpath.

## Adding this module to your project dependencies

Add the following dependency to your `pom.xml`/`build.gradle` file:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public void shouldStartAndHaveListableNode() {
.withLogConsumer(new Slf4jLogConsumer(log))
// }
) {
// starting_k3s {
georgecodes marked this conversation as resolved.
Show resolved Hide resolved
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
k3s.start();
// }
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved

// connecting_with_fabric8 {
// obtain a kubeconfig file which allows us to connect to k3s
Expand Down