Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
k3s-apiserver
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c0d7f766
authored
2022-06-21 16:15:25 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Set the correct taint value for the masters.
1 parent
858245fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
docker-compose.yaml
docker-compose.yaml
View file @
c0d7f76
...
...
@@ -134,7 +134,7 @@ services:
"
server"
,
"
--with-node-id"
,
"
--disable=traefik,coredns"
,
"
--node-taint"
,
"
master=true:NoSchedule"
,
"
--node-taint"
,
"
node-role.kubernetes.io/
master=true:NoSchedule"
,
"
--datastore-endpoint=http://etcd1:2379"
,
"
--cluster-init"
,
]
...
...
@@ -145,7 +145,7 @@ services:
"
server"
,
"
--with-node-id"
,
"
--disable=traefik,coredns"
,
"
--node-taint"
,
"
master=true:NoSchedule"
,
"
--node-taint"
,
"
node-role.kubernetes.io/
master=true:NoSchedule"
,
"
--datastore-endpoint=http://etcd2:2379"
,
"
--server=http://k3s-master-1:6443"
,
]
...
...
@@ -156,7 +156,7 @@ services:
"
server"
,
"
--with-node-id"
,
"
--disable=traefik,coredns"
,
"
--node-taint"
,
"
master=true:NoSchedule"
,
"
--node-taint"
,
"
node-role.kubernetes.io/
master=true:NoSchedule"
,
"
--datastore-endpoint=http://etcd3:2379"
,
"
--server=http://k3s-master-1:6443"
,
]
...
...
Please
register
or
sign in
to post a comment