Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: increase goldpinger replicas from 4 to 8 and add topology constraints #3376

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: goldpinger-deploy
namespace: linux-datapath-test
spec:
replicas: 4
replicas: 8
selector:
matchLabels:
app: goldpinger
Expand Down Expand Up @@ -86,3 +86,10 @@ spec:
periodSeconds: 5
nodeSelector:
kubernetes.io/os: linux
topologySpreadConstraints:
- maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
labelSelector:
matchLabels:
app: "goldpinger"
9 changes: 8 additions & 1 deletion test/integration/manifests/datapath/linux-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: goldpinger-deploy
namespace: linux-datapath-test
spec:
replicas: 4
replicas: 8
selector:
matchLabels:
app: goldpinger
Expand Down Expand Up @@ -84,3 +84,10 @@ spec:
periodSeconds: 5
nodeSelector:
kubernetes.io/os: linux
topologySpreadConstraints:
- maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
labelSelector:
matchLabels:
app: "goldpinger"
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: windows-pod
namespace: datapath-win
spec:
replicas: 4
replicas: 8
selector:
matchLabels:
app: datapod
Expand All @@ -20,3 +20,10 @@ spec:
args: ["sleep", "5000"]
nodeSelector:
kubernetes.io/os: windows
topologySpreadConstraints:
- maxSkew: 1
topologyKey: kubernetes.io/hostname
whenUnsatisfiable: ScheduleAnyway
labelSelector:
matchLabels:
app: "datapod"
Loading