Skip to content

Commit

Permalink
update to v6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mytting committed Jul 17, 2023
1 parent 2eb3e4a commit ad6d967
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion charts/deepflow-agent/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
privileged: true
image: "{{ tpl .Values.image.repository . }}:{{ tpl (toString .Values.image.tag) . }}"
imagePullPolicy: {{ tpl .Values.image.pullPolicy . }}
command: ["sysctl", "-w", "net.core.bpf_jit_enable=1"]
command: ["/bin/bash", "-c", "sysctl -w net.core.bpf_jit_enable=1 || true"]
{{- end }}
containers:
- name: {{ .Chart.Name }}
Expand Down Expand Up @@ -86,6 +86,11 @@ spec:
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: K8S_MEM_LIMIT_FOR_DEEPFLOW
valueFrom:
resourceFieldRef:
divisor: 1Mi
resource: limits.memory
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion charts/deepflow-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ image:
repository: registry.cn-hongkong.aliyuncs.com/deepflow-ce
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: v6.2.6.5
tag: v6.2

imagePullSecrets: []
nameOverride: ""
Expand Down
8 changes: 4 additions & 4 deletions charts/deepflow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ global:
image:
server:
repository: "{{ .Values.global.image.repository }}/deepflow-server"
tag: v6.2.6.5
tag: v6.2
pullPolicy: "{{ .Values.global.image.pullPolicy }}"
app:
repository: "{{ .Values.global.image.repository }}/deepflow-app"
tag: v6.2.6.5
tag: v6.2
pullPolicy: "{{ .Values.global.image.pullPolicy }}"

imagePullSecrets: []
Expand Down Expand Up @@ -658,7 +658,7 @@ deepflow-agent:
repository: "{{ .Values.global.image.repository }}/deepflow-agent"
pullPolicy: "{{ .Values.global.image.pullPolicy }}"
# Overrides the image tag whose default is the chart appVersion.
tag: v6.2.6.5
tag: v6.2

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -817,7 +817,7 @@ grafana:

extraInitContainers:
- name: init-custom-plugins
image: "{{ .Values.global.image.repository }}/deepflowio-init-grafana:v6.2.6.5"
image: "{{ .Values.global.image.repository }}/deepflowio-init-grafana:v6.2"
imagePullPolicy: "{{ tpl .Values.global.image.pullPolicy . }}"
volumeMounts:
- name: custom-plugins
Expand Down

0 comments on commit ad6d967

Please sign in to comment.