This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "> Be KinD with OpenFaaS" | |
# First, check if docker is available | |
docker version | 2>/dev/null | |
if [ $? -ne 0 ]; then | |
echo "> Docker is required for running OpenFaaS on KinD" | |
echo "> Install with: 'curl -sLS https://get.docker.com | sudo sh'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "> Be KinD with OpenFaaS" | |
# First, check if docker is available | |
docker version | 2>/dev/null | |
if [ $? -ne 0 ]; then | |
echo "> Docker is required for running OpenFaaS on KinD" | |
echo "> Install with: 'curl -sLS https://get.docker.com | sudo sh'" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── actions | |
├── stores | |
├── views | |
│ ├── Anonymous | |
│ │ ├── __tests__ | |
│ │ ├── views | |
│ │ │ ├── Home | |
│ │ │ │ ├── __tests__ | |
│ │ │ │ └── Handler.js |