stirmizi kafka setting up with the docs command issue
If you're trying to setup stirmizi kafka using the default command in the documentation page using powershell windows environment, you maybe asked to run the followings:
kubectl create -f 'https://strimzi.io/install/latest?namespace=kafka' -n kafka
the above will error out.
The fix - remove the quotes
kubectl create -f https://strimzi.io/install/latest?namespace=kafka -n kafka
Comments