![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
github.com/kong/kubernetes-testing-framework
Testing framework used by the Kong Kubernetes Team.
Originally this testing framework was developed for the Kong Kubernetes Ingress Controller (KIC) but is now used across multiple Kubernetes projects.
This testing framework supports the following use cases:
v1.19.x+
This framework can be used via command-line interface or as a Golang library.
This project provides a command-line tool named ktf
which can be used to build Kubernetes testing environments.
If you have Golang installed locally you can install with go
:
$ go install github.com/kong/kubernetes-testing-framework/cmd/ktf@latest
Otherwise you can use the shell script to install the latest release for your operating system:
$ curl --proto '=https' -sSf https://kong.github.io/kubernetes-testing-framework/install.sh | sh
If neither of these options suits you then you can install manually by navigating to the RELEASES page and downloading the binary for your platform directly.
You can deploy a testing environment with the following command:
$ ktf environments create --generate-name
Testing environments can be deleted with this command:
$ ktf environments delete --name <NAME>
Commonly this tool is used to deploy a Kubernetes environment with addons such as the Kong Gateway.
You can deploy a cluster with the Kong Gateway already deployed and accessible via LoadBalancer
services by running the following:
$ ktf environments create --name kong-gateway-testing --addon metallb --addon kong
Once the cluster is up configure your kubectl
to use it:
$ kubectl cluster-info --context kind-kong-gateway-testing
You can see the IP addresses where you can reach the Gateway and the Admin API with:
$ kubectl -n kong-system get services
See CONTRIBUTING.md.
If you have any questions about this tool and want to get in touch with the maintainers, check in on #kong in Kubernetes Slack.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.