diff --git a/config/manifests/gwctl/gwctl-cloud.yaml b/config/manifests/gwctl/gwctl-cloud.yaml deleted file mode 100644 index e7560a9a..00000000 --- a/config/manifests/gwctl/gwctl-cloud.yaml +++ /dev/null @@ -1,28 +0,0 @@ -################################################################ -#Name: gwctl-deployment -#Desc: YAML file for creating gwctl for CLI to MBG -################################################################ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: gwctl-deployment - labels: - app: gwctl -spec: - replicas: 1 - selector: - matchLabels: - app: gwctl - template: - metadata: - labels: - app: gwctl - spec: - containers: - - name: gwctl - image: quay.io/mcnet/mbg - imagePullPolicy: IfNotPresent - command: [ "sleep" ] - args: [ "infinity" ] - ports: - - containerPort: 50051 \ No newline at end of file diff --git a/config/manifests/gwctl/gwctl.yaml b/config/manifests/gwctl/gwctl.yaml deleted file mode 100644 index 6bfae00a..00000000 --- a/config/manifests/gwctl/gwctl.yaml +++ /dev/null @@ -1,28 +0,0 @@ -################################################################ -#Name: gwctl-deployment -#Desc: YAML file for creating gwctl for CLI to MBG -################################################################ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: gwctl-deployment - labels: - app: gwctl -spec: - replicas: 1 - selector: - matchLabels: - app: gwctl - template: - metadata: - labels: - app: gwctl - spec: - containers: - - name: gwctl - image: mbg - imagePullPolicy: IfNotPresent - command: [ "sleep" ] - args: [ "infinity" ] - ports: - - containerPort: 50051 \ No newline at end of file diff --git a/config/manifests/mbg/dataplane.yaml b/config/manifests/mbg/dataplane.yaml deleted file mode 100644 index 340408f3..00000000 --- a/config/manifests/mbg/dataplane.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: dataplane - labels: - app: dataplane -spec: - replicas: 1 - selector: - matchLabels: - app: dataplane - template: - metadata: - labels: - app: dataplane - spec: - containers: - - name: dataplane - image: mbg - imagePullPolicy: IfNotPresent - command: [ "sleep" ] - args: [ "infinity" ] - ports: - - containerPort: 443 -# --- -# apiVersion: v1 -# kind: Service -# metadata: -# name: dataplane -# labels: -# app: dataplane -# spec: -# type: ClusterIP -# ports: -# - port: 443 -# targetPort: 443 -# protocol: TCP -# name: http -# selector: -# app: dataplane - \ No newline at end of file diff --git a/config/manifests/mbg/mbg-cloud.yaml b/config/manifests/mbg/mbg-cloud.yaml deleted file mode 100644 index 52fee1d3..00000000 --- a/config/manifests/mbg/mbg-cloud.yaml +++ /dev/null @@ -1,28 +0,0 @@ -################################################################ -#Name: mbg -#Desc: Run mbg pod that listen to port 5002 -################################################################ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: mbg-deployment - labels: - app: mbg -spec: - replicas: 1 - selector: - matchLabels: - app: mbg - template: - metadata: - labels: - app: mbg - spec: - containers: - - name: mbg - image: quay.io/mcnet/mbg - imagePullPolicy: IfNotPresent - command: [ "sleep" ] - args: [ "infinity" ] - ports: - - containerPort: 50051 \ No newline at end of file diff --git a/config/manifests/mbg/mbg-role.yaml b/config/manifests/mbg/mbg-role.yaml deleted file mode 100644 index 25b3a294..00000000 --- a/config/manifests/mbg/mbg-role.yaml +++ /dev/null @@ -1,27 +0,0 @@ ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRole -metadata: - name: mbg-role - namespace: default -rules: -- apiGroups: [ "" ] - resources: [ "pods", "services", "endpoints"] - verbs: [ "get", "list", "watch", "create", "delete"] -- apiGroups: [ "apps" ] - resources: [ "replicasets" ] - verbs: [ "get", "list", "watch"] ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRoleBinding -metadata: - name: default-mbg-role - namespace: default -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: mbg-role -subjects: -- kind: ServiceAccount - name: default - namespace: default \ No newline at end of file diff --git a/config/manifests/mbg/mbg.yaml b/config/manifests/mbg/mbg.yaml deleted file mode 100644 index 15da20c4..00000000 --- a/config/manifests/mbg/mbg.yaml +++ /dev/null @@ -1,42 +0,0 @@ -################################################################ -#Name: mbg -#Desc: Run mbg pod that listen to port 5002 -################################################################ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: mbg-deployment - labels: - app: mbg -spec: - replicas: 1 - selector: - matchLabels: - app: mbg - template: - metadata: - labels: - app: mbg - spec: - containers: - - name: mbg - image: mbg - imagePullPolicy: IfNotPresent - command: [ "sleep" ] - args: [ "infinity" ] - ports: - - containerPort: 443 ---- -apiVersion: v1 -kind: Service -metadata: - name: controlplane -spec: - type: ClusterIP - selector: - app: mbg - ports: - - port: 443 - targetPort: 443 - protocol: TCP - name: http