Skip to content

Commit

Permalink
(ci) - simplify kind config
Browse files Browse the repository at this point in the history
  • Loading branch information
camilamacedo86 committed Jan 7, 2025
1 parent 2fb59a1 commit b8040cb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions test/e2e/kind-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
disableDefaultCNI: true # Disable the default CNI so that we can test NetworkPolicies

disableDefaultCNI: true
nodes:
- role: control-plane
extraMounts:
- hostPath: /etc/sysctl.conf
containerPath: /etc/sysctl.conf
extraConfig: |
sysctl:
net.ipv6.conf.all.disable_ipv6: "1"
net.ipv6.conf.default.disable_ipv6: "1"

0 comments on commit b8040cb

Please sign in to comment.