Skip to content

Commit

Permalink
chore: fix license rbac, add heartbeat to cloud. (#4410)
Browse files Browse the repository at this point in the history
* chore: fix license rbac.

Signed-off-by: yy <lingdie.yy@outlook.com>

* chore: add heartbeat to cloud.

Signed-off-by: yy <lingdie.yy@outlook.com>

---------

Signed-off-by: yy <lingdie.yy@outlook.com>
  • Loading branch information
lingdie committed Dec 13, 2023
1 parent 4c166d3 commit 47d5e97
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 10 deletions.
14 changes: 6 additions & 8 deletions controllers/job/heartbeat/deploy/manifests/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,9 @@ metadata:
namespace: sealos
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
kind: ClusterRole
metadata:
name: heartbeat-cronjob-role
namespace: sealos
name: heartbeat-cronjob-cluster-role
rules:
- apiGroups: [ "" ]
resources: [ "nodes" ]
Expand All @@ -54,14 +53,13 @@ rules:
verbs: [ "get" ]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
kind: ClusterRoleBinding
metadata:
name: heartbeat-cronjob-role-binding
namespace: sealos
name: heartbeat-cronjob-cluster-role-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: heartbeat-cronjob-role
kind: ClusterRole
name: heartbeat-cronjob-cluster-role
subjects:
- kind: ServiceAccount
name: heartbeat-cronjob
Expand Down
22 changes: 22 additions & 0 deletions controllers/license/deploy/manifests/rbac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: kube-system-namespace-read-cluster-role
rules:
- apiGroups: [ "" ]
resources: [ "namespaces" ]
resourceNames: [ "kube-system" ]
verbs: [ "get" ]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: license-controller-role-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: kube-system-namespace-read-cluster-role
subjects:
- kind: ServiceAccount
name: license-controller-manager
namespace: license-system
2 changes: 2 additions & 0 deletions deploy/cloud/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ retryPullImage ghcr.io/labring/sealos-cloud-cronjob-frontend:latest

retryPullImage ghcr.io/labring/sealos-cloud-database-service:latest
retryPullImage ghcr.io/labring/sealos-cloud-job-init-controller:latest
retryPullImage ghcr.io/labring/sealos-cloud-job-heartbeat-controller:latest

sealos save -o tars/user.tar ghcr.io/labring/sealos-cloud-user-controller:latest
sealos save -o tars/terminal.tar ghcr.io/labring/sealos-cloud-terminal-controller:latest
Expand All @@ -61,3 +62,4 @@ sealos save -o tars/frontend-cronjob.tar ghcr.io/labring/sealos-cloud-cronjob-fr

sealos save -o tars/database-service.tar ghcr.io/labring/sealos-cloud-database-service:latest
sealos save -o tars/job-init.tar ghcr.io/labring/sealos-cloud-job-init-controller:latest
sealos save -o tars/job-heartbeat.tar ghcr.io/labring/sealos-cloud-job-heartbeat-controller:latest
1 change: 1 addition & 0 deletions deploy/cloud/scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ function sealos_run_controller {

function sealos_authorize {
sealos run tars/job-init.tar
sealos run tars/job-heartbeat.tar

# wait for admin user create
echo "Waiting for admin user create"
Expand Down
20 changes: 20 additions & 0 deletions frontend/providers/license/deploy/manifests/deploy.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ metadata:
name: license-frontend
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: license-frontend
namespace: license-frontend
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: license-frontend-role-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: kube-system-namespace-read-cluster-role
subjects:
- kind: ServiceAccount
name: license-frontend
namespace: license-frontend
---
apiVersion: v1
kind: ConfigMap
metadata:
name: license-frontend-config
Expand Down Expand Up @@ -34,6 +53,7 @@ spec:
labels:
app: license-frontend
spec:
serviceAccountName: license-frontend
containers:
- name: license-frontend
env:
Expand Down

0 comments on commit 47d5e97

Please sign in to comment.