-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor project name to cloud-provider-ironcore
- Loading branch information
Showing
29 changed files
with
266 additions
and
268 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# onmetal-csi-driver maintainers | ||
* @onmetal/ccm-maintainers | ||
# cloud-provider-ironcore maintainers | ||
* @ironcore-dev/integration |
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 +1 @@ | ||
Please refer to the [Gardener on Metal code of conduct](https://onmetal.github.io/documentation/contribute/overview/#code-of-conduct). | ||
Please refer to the [IronCore code of conduct](https://ironcore-dev.github.io/documentation/contribute/overview/#code-of-conduct). |
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
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 |
---|---|---|
|
@@ -23,38 +23,38 @@ | |
$ systemctl restart kubelet | ||
``` | ||
## Steps to Deploy "Cloud-provider-onmetal" | ||
* To deploy clone the repository [cloud-provider-onmetal](https://github.com/onmetal/cloud-provider-onmetal) | ||
## Steps to Deploy "Cloud-provider-ironcore" | ||
* To deploy clone the repository [cloud-provider-ironcore](https://github.com/ironcore-dev/cloud-provider-ironcore) | ||
```shell | ||
git clone [email protected]:onmetal/cloud-provider-onmetal.git | ||
cd cloud-provider-onmetal | ||
git clone [email protected]:ironcore-dev/cloud-provider-ironcore.git | ||
cd cloud-provider-ironcore | ||
``` | ||
* Create folder ``config/kind/onmetal`` and create kubeconfig into folder ``config/kind/onmetal/kubeconfig``. | ||
* Create folder ``config/kind/ironcore`` and create kubeconfig into folder ``config/kind/ironcore/kubeconfig``. | ||
|
||
If you want to use onmetal-api server from different cluster then copy kubeconfig of that cluster into folder ``config/kind/onmetal/kubeconfig`` | ||
If you want to use ironcore server from different cluster then copy kubeconfig of that cluster into folder ``config/kind/ironcore/kubeconfig`` | ||
|
||
If you want to use onmetal-api server from local deployment then copy kubeconfig into folder ``config/kind/onmetal/kubeconfig`` using below command | ||
If you want to use ironcore server from local deployment then copy kubeconfig into folder ``config/kind/ironcore/kubeconfig`` using below command | ||
```shell | ||
kind get kubeconfig > ./config/kind/onmetal/kubeconfig | ||
kind get kubeconfig > ./config/kind/ironcore/kubeconfig | ||
``` | ||
* Copy kubeconfig into folder ``config/kind/kubeconfig`` | ||
```shell | ||
kind get kubeconfig > ./config/kind/kubeconfig | ||
``` | ||
* Create cloud-config file under ``./config/kind/`` with the help of sample file present under ``./config/sample/cloud-config`` | ||
|
||
**Note**: The kubeconfig content here is your onmetal-api cluster's kubeconfig incase of a real kubeadm cluster deployment | ||
**Note**: The kubeconfig content here is your ironcore-api cluster's kubeconfig incase of a real kubeadm cluster deployment | ||
|
||
* Run below make target to deploy the ``cloud-provider-onmetal`` | ||
* Run below make target to deploy the ``cloud-provider-ironcore`` | ||
```shell | ||
make docker-build | ||
kustomize build config/kind | kubectl apply -f - | ||
``` | ||
**Validation:** | ||
``` | ||
kubectl get po -n kube-system -o wide| grep onmetal | ||
onmetal-cloud-controller-manager-crws9 1/1 Running 4 (80s ago) 4m13s 10.244.225.76 csi-master | ||
kubectl get po -n kube-system -o wide| grep ironcore | ||
ironcore-cloud-controller-manager-crws9 1/1 Running 4 (80s ago) 4m13s 10.244.225.76 csi-master | ||
``` | ||
|
||
**Note**: In case that there are multiple environments running, ensure that `kind get clusters` is pointing to the | ||
|
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 |
---|---|---|
|
@@ -10,14 +10,14 @@ | |
|
||
## Clone the Repository | ||
|
||
To bring up and start locally the `cloud-provider-onmetal` project for development purposes you first need to clone the repository. | ||
To bring up and start locally the `cloud-provider-ironcore` project for development purposes you first need to clone the repository. | ||
|
||
```shell | ||
git clone [email protected]:onmetal/cloud-provider-onmetal.git | ||
cd cloud-provider-onmetal | ||
git clone [email protected]:ironcore-dev/cloud-provider-ironcore.git | ||
cd cloud-provider-ironcore | ||
``` | ||
|
||
## Install cloud-provider-onmetal into the kind Cluster | ||
## Install cloud-provider-ironcore into the kind Cluster | ||
For local development with `kind` follow below steps | ||
|
||
Copy kubeconfig to apply the config in kind | ||
|
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
Oops, something went wrong.