summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorzhu733756 <zhu733756@kubesphere.io>2022-03-03 15:06:22 +0800
committerzhu733756 <zhu733756@kubesphere.io>2022-03-03 16:09:07 +0800
commit3fcae6f6c54db05c17058b5d8e88a5579a204370 (patch)
treee36a0c3406728c4563cc4491a8e67e684d860d33 /build
parentfix scripts (diff)
downloadkubeedge-3fcae6f6c54db05c17058b5d8e88a5579a204370.tar.gz
remove iptablesmgr static file
Signed-off-by: zhu733756 <zhu733756@kubesphere.io>
Diffstat (limited to 'build')
-rw-r--r--build/helm/charts/profiles/iptablesmgr.yaml95
1 files changed, 0 insertions, 95 deletions
diff --git a/build/helm/charts/profiles/iptablesmgr.yaml b/build/helm/charts/profiles/iptablesmgr.yaml
deleted file mode 100644
index 20f8308c9..000000000
--- a/build/helm/charts/profiles/iptablesmgr.yaml
+++ /dev/null
@@ -1,95 +0,0 @@
-# Default values for kubeedge.
-# This is a YAML-formatted file.
-# Declare variables to be passed into your templates.
-appVersion: "1.9.1"
-
-cloudCore:
- replicaCount: 1
- hostNetWork: "false"
- image:
- repository: "kubeedge/cloudcore"
- tag: "v1.9.1"
- pullPolicy: "IfNotPresent"
- pullSecrets: []
- securityContext: {}
- labels:
- k8s-app: kubeedge
- kubeedge: cloudcore
- annotations: {}
- affinity:
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: node-role.kubernetes.io/edge
- operator: DoesNotExist
- tolerations: {}
- nodeSelector: {}
- resources:
- limits:
- cpu: 200m
- memory: 1Gi
- requests:
- cpu: 100m
- memory: 512Mi
- modules:
- cloudHub:
- advertiseAddress: # Causion!: Leave this entry to empty will cause CloudCore to exit abnormally once KubeEdge is enabled.
- - "" # At least a public IP Address or an IP which can be accessed by edge nodes must be provided!
- nodeLimit: "1000"
- websocket:
- enable: "true"
- quic:
- enable: "false"
- maxIncomingStreams: "10000"
- https:
- enable: "true"
- cloudStream:
- enable: "true"
- dynamicController:
- enable: "false"
- router:
- enable: "false"
- service:
- enable: "true"
- type: "NodePort"
- cloudhubNodePort: "30000"
- cloudhubQuicNodePort: "30001"
- cloudhubHttpsNodePort: "30002"
- cloudstreamNodePort: "30003"
- tunnelNodePort: "30004"
-
-iptablesManager:
- enable: "true"
- mode: "external"
- hostNetWork: true
- image:
- repository: "kubeedge/iptables-manager"
- tag: "v1.9.1"
- pullPolicy: "IfNotPresent"
- pullSecrets: []
- securityContext:
- capabilities:
- add:
- - NET_ADMIN
- - NET_RAW
- labels:
- k8s-app: iptables-manager
- kubeedge: iptables-manager
- annotations: {}
- affinity:
- nodeAffinity:
- requiredDuringSchedulingIgnoredDuringExecution:
- nodeSelectorTerms:
- - matchExpressions:
- - key: node-role.kubernetes.io/edge
- operator: DoesNotExist
- tolerations: {}
- nodeSelector: {}
- resources:
- limits:
- cpu: 200m
- memory: 50Mi
- requests:
- cpu: 100m
- memory: 25Mi \ No newline at end of file