chore: change port num

This commit is contained in:
andyzhangx 2020-02-10 04:42:36 +00:00
parent a8ea533f7b
commit 175887bb4d
8 changed files with 25 additions and 29 deletions

View File

@ -14,6 +14,7 @@ spec:
{{ include "azurefile.labels" . | indent 6 }}
app: csi-azurefile-controller
spec:
hostNetwork: true # only required for MSI enabled cluster
serviceAccountName: csi-azurefile-controller-sa
nodeSelector:
beta.kubernetes.io/os: linux
@ -107,7 +108,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --connection-timeout=3s
- --health-port=9702
- --health-port=29612
- --v=5
volumeMounts:
- name: socket-dir
@ -126,10 +127,10 @@ spec:
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
ports:
- containerPort: 9702
- containerPort: 29612
name: healthz
protocol: TCP
- containerPort: 10252
- containerPort: 29614
name: metrics
protocol: TCP
livenessProbe:
@ -171,17 +172,3 @@ spec:
- name: msi
hostPath:
path: /var/lib/waagent/ManagedIdentity-Settings
---
apiVersion: v1
kind: Service
metadata:
name: csi-azurefile-controller
namespace: {{ .Release.Namespace }}
{{ include "azurefile.labels" . | indent 2 }}
spec:
selector:
app: csi-azurefile-controller
ports:
- port: 10252
targetPort: 10252
type: ClusterIP

View File

@ -27,7 +27,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --connection-timeout=3s
- --health-port=9702
- --health-port=29613
- --v=5
resources:
limits:
@ -70,7 +70,7 @@ spec:
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
ports:
- containerPort: 9702
- containerPort: 29613
name: healthz
protocol: TCP
livenessProbe:

View File

@ -1,3 +1,4 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
@ -18,13 +19,13 @@ spec:
attachRequired:
description:
Indicates this CSI volume driver requires an attach operation,
and that Kubernetes should call attach and wait for any attach operation
to complete before proceeding to mount.
and that Kubernetes should call attach and wait for any attach
operation to complete before proceeding to mount.
type: boolean
podInfoOnMountVersion:
description:
Indicates this CSI volume driver requires additional pod
information (like podName, podUID, etc.) during mount operations.
information (like podName, podUID, etc.) during mount operations
type: string
version: v1alpha1
status:

View File

@ -1,3 +1,4 @@
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:

View File

@ -14,6 +14,7 @@ spec:
labels:
app: csi-azurefile-controller
spec:
hostNetwork: true # only required for MSI enabled cluster
serviceAccountName: csi-azurefile-controller-sa
nodeSelector:
beta.kubernetes.io/os: linux
@ -55,8 +56,8 @@ spec:
value: /csi/csi.sock
imagePullPolicy: Always
volumeMounts:
- mountPath: /csi
name: socket-dir
- mountPath: /csi
name: socket-dir
resources:
limits:
cpu: 200m
@ -107,7 +108,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --connection-timeout=3s
- --health-port=9702
- --health-port=29612
- --v=5
volumeMounts:
- name: socket-dir
@ -126,9 +127,12 @@ spec:
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
ports:
- containerPort: 9702
- containerPort: 29612
name: healthz
protocol: TCP
- containerPort: 29614
name: metrics
protocol: TCP
livenessProbe:
failureThreshold: 5
httpGet:

View File

@ -1,3 +1,4 @@
---
kind: DaemonSet
apiVersion: apps/v1
metadata:
@ -26,7 +27,7 @@ spec:
args:
- --csi-address=/csi/csi.sock
- --connection-timeout=3s
- --health-port=9702
- --health-port=29613
- --v=5
resources:
limits:
@ -69,7 +70,7 @@ spec:
- "--endpoint=$(CSI_ENDPOINT)"
- "--nodeid=$(KUBE_NODE_NAME)"
ports:
- containerPort: 9702
- containerPort: 29613
name: healthz
protocol: TCP
livenessProbe:
@ -131,3 +132,4 @@ spec:
- hostPath:
path: /var/lib/waagent/ManagedIdentity-Settings
name: msi
---

View File

@ -1,3 +1,4 @@
---
apiVersion: v1
kind: ServiceAccount
metadata:

View File

@ -39,7 +39,7 @@ var (
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
nodeID = flag.String("nodeid", "", "node id")
version = flag.Bool("version", false, "Print the version and exit.")
metricsAddress = flag.String("metrics-address", "0.0.0.0:10252", "export the metrics")
metricsAddress = flag.String("metrics-address", "0.0.0.0:29614", "export the metrics")
)
func main() {