-
Notifications
You must be signed in to change notification settings - Fork 12
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
TACODEV-909: integrate postjobs, update version and so on #78
Conversation
intelliguy
commented
Sep 27, 2021
- integrate postjobs - initialize k8s for taco and register to argocd
- change error on duplicated registration to warning
- change rbac to allow 'kubectl apply'
- update version for cluster-api-aws
This PR is stale because it has been open 3 days with no activity. Remove stale label or comment or this will be closed in 3 days. |
This PR was closed because it has been stalled for 10 days with no activity. |
- integrate postjobs - initialize k8s for taco and register to argocd - change error on duplicated registration to warning - change rbac to allow 'kubectl apply' - update version for cluster-api-aws - add README.md
938a63b
to
cad41cb
Compare
This PR is stale because it has been open 3 days with no activity. Remove stale label or comment or this will be closed in 3 days. |
@@ -32,7 +32,7 @@ spec: | |||
subPath: generate_machine_pool.py | |||
mountPath: /generate_machine_pool.py | |||
|
|||
{{- if .Values.job.taconode.enabled }} | |||
{{- if or .Values.job.taconode.enabled .Values.job.argo.enabled }} |
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.
아래의 argo register 를 합치신것 같은데, 굳이 .Values.job.argo.enabled 가 or 조건으로 들어갈 필요가 있을까요?
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.
두개의 기능을 하나의 컨테이너에서 실행하도록 하면서 둘중의 하나라도 세팅되어 있으면 해당 컨테이너가 수행하도록 했습니다.
즉, 이전과 같이
- taconode를 초기화하는 기능과
- argo register를 하는 기능을
각각 사용할 수 있습니다.
이를 위한 장치입니다.
TACODEV-909: integrate postjobs, update version and so on