diff --git a/openclaw/pvc-openclaw-pvc.yaml b/openclaw/pvc-openclaw-pvc.yaml deleted file mode 100644 index 3834d5c..0000000 --- a/openclaw/pvc-openclaw-pvc.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: v1 -kind: PersistentVolumeClaim -metadata: - annotations: - kubectl.kubernetes.io/last-applied-configuration: '{"apiVersion":"v1","kind":"PersistentVolumeClaim","metadata":{"annotations":{},"name":"openclaw-pvc","namespace":"openclaw"},"spec":{"accessModes":["ReadWriteOnce"],"resources":{"requests":{"storage":"20Gi"}},"storageClassName":"local-path","volumeName":"openclaw-pv"}} - - ' - pv.kubernetes.io/bind-completed: 'yes' - name: openclaw-pvc - namespace: openclaw -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 20Gi - storageClassName: local-path - volumeMode: Filesystem - volumeName: openclaw-pv - diff --git a/openclaw/rbac-openclaw-agent.yaml b/openclaw/rbac-openclaw-agent.yaml deleted file mode 100644 index 4033e58..0000000 --- a/openclaw/rbac-openclaw-agent.yaml +++ /dev/null @@ -1,36 +0,0 @@ ---- -apiVersion: v1 -kind: ServiceAccount -metadata: - name: openclaw-agent - namespace: openclaw - ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - name: openclaw-agent-readonly -rules: -- apiGroups: [""] - resources: [pods, pods/log, services, nodes, namespaces, events] - verbs: [get, list, watch] -- apiGroups: [apps] - resources: [deployments, replicasets, statefulsets, daemonsets] - verbs: [get, list, watch] -- apiGroups: [networking.k8s.io] - resources: [ingresses] - verbs: [get, list, watch] - ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRoleBinding -metadata: - name: openclaw-agent-readonly-binding -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: openclaw-agent-readonly -subjects: -- kind: ServiceAccount - name: openclaw-agent - namespace: openclaw