-
Notifications
You must be signed in to change notification settings - Fork 23
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 #4 from AbsaOSS/sommaritane-comments
Sommaritane comments
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# AbsaOSS/k3d-action | ||
Easy to use GitHub action allows you to test single/multi-cluster apps with additional private registry support. | ||
A GitHub Action to run lightweight ephemeral Kubernetes clusters during workflow. | ||
|
||
- [Introduction](#introduction) | ||
- [Getting started](#getting-started) | ||
|
@@ -66,7 +66,9 @@ configuration looks like this : | |
cluster-name: "test-cluster-1" | ||
args: --agents 1 | ||
``` | ||
k3d creates a cluster with one worker node (having traefik and metrics services), one agent and one default load-balancer node. In real scenarios you might prefer to do some port mapping and disable default load balancer. Such an action would look like this: | ||
k3d creates a cluster with one worker node (with [traefik](https://traefik.io/) and metrics services), one agent and one | ||
default load-balancer node. In real scenarios you might prefer to do some port mapping and disable default load balancer. | ||
Such an action would look like this: | ||
```yaml | ||
- uses: AbsaOSS/[email protected] | ||
name: "Create Single Cluster" | ||
|