Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jul 16, 2024
1 parent c309d9c commit fdfb365
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 748 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@ jobs:
needs: build-e2e-images
strategy:
matrix:
ginkgo_focus: [
"KCP remediation",
"MachineDeployment remediation",
"Workload cluster creation",
"Workload cluster scaling",
"Workload cluster upgrade",
]
ginkgo_focus:
- "KCP remediation"
- "MachineDeployment remediation"
- "Workload cluster creation"
- "Workload cluster scaling"
- "Workload cluster upgrade"
steps:
- name: Check out repo
uses: actions/checkout@v4
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,20 @@ This repository contains bootstrap and control plane providers to deploy Canonic
CABPCK (Cluster API bootstrap provider for Canonical Kubernetes) is responsible for generate cloud-init scripts for generate Machines such that they run Kubernetes nodes. This implementation uses [Canonical Kubernetes](https://github.com/canonical/k8s-snap) to deliver Kubernetes.

CACPCK (Cluster API control plane provider for Canonical Kubernetes) is responsible for managing the lifecycle of machines that host the control plane nodes of a Canonical Kubernetes cluster.

## Tests

Run the unittests with

```shell
make test-unit
```

For the e2e tests, run:

```shell
make docker-build-e2e # run only once to build the images
make test-e2e
```

Visit the [tests README](./test/e2e/README.md) for more information.
Loading

0 comments on commit fdfb365

Please sign in to comment.