Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Kube OVN
Commits
98bb7510
Commit
98bb7510
authored
4 years ago
by
Mengxin Liu
Committed by
oilbeater
4 years ago
Browse files
Options
Download
Email Patches
Plain Diff
chore: update kind and kube-ovn-cni updateStrategy
parent
7af1f4f9
master
acl
acl-doc
add_unknown_to_lsp
allow-subnet
bandwidth
base/enable-dbg
centralized-policy-route
centralized_nat
chore/coc-roadmap
chore/show-gw-error
chore/size
ci/base
ci/base-update
ci/retry
ci/trivy
ci/ubuntu-version
ci/update-kind
cni
crd-print
db-monitor
debug
delete-qos
delete-qos-queue
delete_ip
doc/custom-kubeconfig
doc/optimization
doc/vip
docs/corigine
docs/dpdk-pod-name
docs/iface-ic
docs/internal-port-vlan
docs/namespace
docs/optimize
docs/optimize-cilium
dualstack
dualstack_merge
ecmp
ecmp_static_route
encap-ip
env-check
fdb
feat/add-lint
feat/bgp
feat/dev-image
feat/disable-ping-check
feat/distribute-eip
feat/keep-chassis-name
feat/ko
feat/log
feat/mcast
feat/multicast
feat/remove-cluster-ip
feat/ssl
feat/update-ovn
feat/vlan-geneve
feat/vlan-regex
feat/vpc-lb
fix-base
fix-dnat
fix-resubmit-limit
fix/acl
fix/avx512
fix/check-crd
fix/check-special-subnet
fix/cleanup
fix/ecmp-hash
fix/gw-del
fix/ic-restart
fix/init-ping
fix/iptables
fix/ipv6-svc
fix/metrics-name
fix/missing-date
fix/node-acl
fix/np-log
fix/ovn-healthcheck
fix/ovn-northd-flipflop
fix/pod-del
fix/provider-check
fix/reset-ovn0
fix/src-priority
fix/subnet-without-protocol
fix/udp-checksum
fix/uninstall
fix_make_kind_reload
gc-vm-lsp
internal-port
internal_port
internal_tcpdump
ip
join
klog/v2
log/rotate
ls-dnat-mod-dl-dst
lsp-address
lsp-ipam
mahz-master
monitor/metrics
monitor_db_con
multus
multus-cni-update
namespace
nat-gw
nbctl
networkpolicy
nodeport
np_master
ns-subnet
ovn-controller
ovn-db-recover
ovs-nonstop
ovs-win64-ci
perf/4.18
perf/alias
perf/libovsdb
perf/optimization
perf/route-port-address
perf/stt
perf/tuning-guide
poc
policy-route
policy-route-1.8
port-group
push-img
qos
qos-e2e
qos-query
refactor/other_config
reflactor_note
release-1.10
release-1.5
release-1.5-vpc
release-1.5.2
release-1.6
release-1.7
release-1.8
release-1.8-kubevirt
release-1.8-lint
release-1.8-monitor
release-1.9
release-1.9-monitor
release/prepare-1.9
remove_no_need_parms_svcAsName
restore
revert-1094-vpc-lb
revert-1264-yd-master
revert-1309-fixcni
security/ubuntu-update
security/update-ubuntu
sg-acl
stspod
subnet
subnet_ips
svc
sync-ovn-db
test/fix-flaky
testing
update-ovs
update/1.7-1.8
update/1.8.2
update_version
upgrade-ovs
vm-migrate
vm-static-ip
vpc-nat-gw
webhook
v1.10.7
v1.10.6
v1.10.5
v1.10.4
v1.10.3
v1.10.2
v1.10.1
v1.10.0
v1.9.14
v1.9.13
v1.9.12
v1.9.10
v1.9.9
v1.9.8
v1.9.7
v1.9.6
v1.9.5
v1.9.4
v1.9.3
v1.9.2
v1.9.1
v1.9.0
v1.8.14
v1.8.12
v1.8.11
v1.8.9
v1.8.8
v1.8.7
v1.8.6
v1.8.5
v1.8.4
v1.8.3
v1.8.2
v1.8.1
v1.8.0
v1.7.3
v1.7.2
v1.7.1
v1.7.0
v1.6.3
v1.6.2
v1.6.1
v1.6.0
v1.5.2
v1.5.1
v1.5.0
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
.github/workflows/build-x86-image.yaml
+24
-0
.github/workflows/build-x86-image.yaml
dist/images/install-pre-1.16.sh
+0
-2
dist/images/install-pre-1.16.sh
dist/images/install.sh
+0
-2
dist/images/install.sh
yamls/kind.yaml.j2
+5
-5
yamls/kind.yaml.j2
yamls/kube-ovn-ipv6.yaml
+0
-2
yamls/kube-ovn-ipv6.yaml
yamls/kube-ovn-pre17.yaml
+0
-2
yamls/kube-ovn-pre17.yaml
with
29 additions
and
13 deletions
+29
-13
.github/workflows/build-x86-image.yaml
+
24
-
0
View file @
98bb7510
...
...
@@ -83,6 +83,14 @@ jobs:
-
name
:
Check out code
uses
:
actions/checkout@v2
-
name
:
Install Kind
env
:
KIND_VERSION
:
v0.9.0
run
:
|
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
chmod +x ./kind
sudo mv kind /usr/local/bin
-
name
:
Init Kind
run
:
|
pip install j2cli --user
...
...
@@ -121,6 +129,14 @@ jobs:
-
name
:
Check out code
uses
:
actions/checkout@v2
-
name
:
Install Kind
env
:
KIND_VERSION
:
v0.9.0
run
:
|
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
chmod +x ./kind
sudo mv kind /usr/local/bin
-
name
:
Init Kind
run
:
|
pip install j2cli --user
...
...
@@ -160,6 +176,14 @@ jobs:
-
name
:
Check out code
uses
:
actions/checkout@v2
-
name
:
Install Kind
env
:
KIND_VERSION
:
v0.9.0
run
:
|
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VERSION}/kind-$(uname)-amd64
chmod +x ./kind
sudo mv kind /usr/local/bin
-
name
:
Init Kind
run
:
|
pip install j2cli --user
...
...
This diff is collapsed.
Click to expand it.
dist/images/install-pre-1.16.sh
+
0
-
2
View file @
98bb7510
...
...
@@ -1107,8 +1107,6 @@ spec:
selector:
matchLabels:
app: kube-ovn-cni
updateStrategy:
type: OnDelete
template:
metadata:
labels:
...
...
This diff is collapsed.
Click to expand it.
dist/images/install.sh
+
0
-
2
View file @
98bb7510
...
...
@@ -1224,8 +1224,6 @@ spec:
selector:
matchLabels:
app: kube-ovn-cni
updateStrategy:
type: OnDelete
template:
metadata:
labels:
...
...
This diff is collapsed.
Click to expand it.
yamls/kind.yaml.j2
+
5
-
5
View file @
98bb7510
kind: Cluster
apiVersion: kind.
sigs.
k8s.io/v1alpha
3
apiVersion: kind.
x-
k8s.io/v1alpha
4
networking:
disableDefaultCNI: true
ipFamily: {{ ip_family }}
...
...
@@ -17,13 +17,13 @@ kubeadmConfigPatches:
dataDir: "/tmp/lib/etcd"
nodes:
- role: control-plane
image: kindest/node:v1.1
8.2
image: kindest/node:v1.1
9.1
{%- if ha is equalto "true" %}
- role: control-plane
image: kindest/node:v1.1
8.2
image: kindest/node:v1.1
9.1
- role: control-plane
image: kindest/node:v1.1
8.2
image: kindest/node:v1.1
9.1
{%- else %}
- role: worker
image: kindest/node:v1.1
8.2
image: kindest/node:v1.1
9.1
{%- endif %}
This diff is collapsed.
Click to expand it.
yamls/kube-ovn-ipv6.yaml
+
0
-
2
View file @
98bb7510
...
...
@@ -93,8 +93,6 @@ spec:
selector
:
matchLabels
:
app
:
kube-ovn-cni
updateStrategy
:
type
:
OnDelete
template
:
metadata
:
labels
:
...
...
This diff is collapsed.
Click to expand it.
yamls/kube-ovn-pre17.yaml
+
0
-
2
View file @
98bb7510
...
...
@@ -90,8 +90,6 @@ spec:
selector
:
matchLabels
:
app
:
kube-ovn-cni
updateStrategy
:
type
:
OnDelete
template
:
metadata
:
labels
:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help