diff --git a/.github/workflows/build-x86-image.yaml b/.github/workflows/build-x86-image.yaml index 321984de153..822b0e95c78 100644 --- a/.github/workflows/build-x86-image.yaml +++ b/.github/workflows/build-x86-image.yaml @@ -24,7 +24,7 @@ env: GO_VERSION: '' KIND_VERSION: v0.22.0 GOSEC_VERSION: '2.19.0' - HELM_VERSION: v3.14.1 + HELM_VERSION: v3.14.3 SUBMARINER_VERSION: '0.16.3' jobs: diff --git a/.github/workflows/scheduled-e2e.yaml b/.github/workflows/scheduled-e2e.yaml index 73ff8f702ba..0e8f9a625ab 100644 --- a/.github/workflows/scheduled-e2e.yaml +++ b/.github/workflows/scheduled-e2e.yaml @@ -12,7 +12,7 @@ concurrency: env: GO_VERSION: '' KIND_VERSION: v0.22.0 - HELM_VERSION: v3.14.1 + HELM_VERSION: v3.14.3 SUBMARINER_VERSION: '0.16.3' jobs: diff --git a/.gitignore b/.gitignore index 579af724e76..44806dc8615 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,7 @@ kube-ovn-cni-sa.yaml kube-ovn-sa.yaml ovn-ovs-sa.yaml ovs-ovn-ds.yaml +cacert.pem +ovn-req.pem +ovn-cert.pem +ovn-privkey.pem diff --git a/Makefile b/Makefile index f881a9e758f..c935a0105b9 100644 --- a/Makefile +++ b/Makefile @@ -45,10 +45,10 @@ KUBEVIRT_OPERATOR_YAML = https://github.com/kubevirt/kubevirt/releases/download/ KUBEVIRT_CR_YAML = https://github.com/kubevirt/kubevirt/releases/download/$(KUBEVIRT_VERSION)/kubevirt-cr.yaml KUBEVIRT_TEST_YAML = https://kubevirt.io/labs/manifests/vm.yaml -CILIUM_VERSION = 1.15.1 +CILIUM_VERSION = 1.15.2 CILIUM_IMAGE_REPO = quay.io/cilium -CERT_MANAGER_VERSION = v1.14.2 +CERT_MANAGER_VERSION = v1.14.4 CERT_MANAGER_CONTROLLER = quay.io/jetstack/cert-manager-controller:$(CERT_MANAGER_VERSION) CERT_MANAGER_CAINJECTOR = quay.io/jetstack/cert-manager-cainjector:$(CERT_MANAGER_VERSION) CERT_MANAGER_WEBHOOK = quay.io/jetstack/cert-manager-webhook:$(CERT_MANAGER_VERSION) @@ -63,7 +63,7 @@ SUBMARINER_ROUTE_AGENT = quay.io/submariner/submariner-route-agent:$(SUBMARINER_ SUBMARINER_NETTEST = quay.io/submariner/nettest:$(SUBMARINER_VERSION) DEEPFLOW_VERSION = v6.4 -DEEPFLOW_CHART_VERSION = 6.4.012 +DEEPFLOW_CHART_VERSION = 6.4.013 DEEPFLOW_CHART_REPO = https://deepflow-ce.oss-cn-beijing.aliyuncs.com/chart/stable DEEPFLOW_IMAGE_REPO = registry.cn-beijing.aliyuncs.com/deepflow-ce DEEPFLOW_SERVER_NODE_PORT = 30417 @@ -864,7 +864,6 @@ kind-install-deepflow: kind-install helm repo add deepflow $(DEEPFLOW_CHART_REPO) helm repo update deepflow $(eval CLICKHOUSE_PERSISTENCE = $(shell helm show values --version $(DEEPFLOW_CHART_VERSION) --jsonpath '{.clickhouse.storageConfig.persistence}' deepflow/deepflow | sed 's/0Gi/Gi/g')) - $(eval GRAFANA_EXTRA_INIT_CONTAINERS = $(shell helm show values --version $(DEEPFLOW_CHART_VERSION) --jsonpath '{.grafana.extraInitContainers}' deepflow/deepflow | sed 's/:latest/:$(DEEPFLOW_VERSION)/g')) helm install deepflow deepflow/deepflow --wait \ --version $(DEEPFLOW_CHART_VERSION) \ --namespace deepflow \ @@ -875,7 +874,6 @@ kind-install-deepflow: kind-install --set grafana.image.registry=$(DEEPFLOW_IMAGE_REPO) \ --set grafana.image.pullPolicy=IfNotPresent \ --set grafana.service.nodePort=$(DEEPFLOW_GRAFANA_NODE_PORT) \ - --set-json 'grafana.extraInitContainers=$(GRAFANA_EXTRA_INIT_CONTAINERS)' \ --set mysql.storageConfig.persistence.size=5Gi \ --set mysql.image.pullPolicy=IfNotPresent \ --set clickhouse.image.pullPolicy=IfNotPresent \