-
Notifications
You must be signed in to change notification settings - Fork 2
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
Add development setup document and modify config files as needed #240
Conversation
e078585
to
437081e
Compare
22776b4
to
17b80c3
Compare
17b80c3
to
2f2d3e8
Compare
@@ -15,6 +15,7 @@ namePrefix: apinetlet- | |||
resources: | |||
- ../rbac | |||
- ../manager | |||
- ../apinet-rbac |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@afritzler I am not sure if this should be employed here - i can remember this should only be done when all components run together in the same cluster.
If this is the case, the inclusion of ./apinet-rbac
should be done downstream as well depending of this, e.g. in the kind-specific kustomization configuration:
resources:
- github.com/ironcore-dev/ironcore-net/config/apinetlet/apinet-rbac?ref=437081e6eea333713fa75ce6ccf3a46025a8dac0
- github.com/ironcore-dev/ironcore-net/config/apinetlet/default?ref=437081e6eea333713fa75ce6ccf3a46025a8dac0
The same goes for metalnetlet-rbac
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed
docs/development/setup.md
Outdated
1. Install ironcore-net API server and API services into the K8s cluster. | ||
|
||
```shell | ||
make install APISERVER_IMG=<apiserver image> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is common to set the variables before the deploy command. Can we change that for all the calls?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed steps for clusters other than kind
5918212
to
4224960
Compare
Proposed Changes