diff --git a/.github/workflows/ci-non-go.sh b/.github/workflows/ci-non-go.sh index 3d0cdca0..23d1d112 100755 --- a/.github/workflows/ci-non-go.sh +++ b/.github/workflows/ci-non-go.sh @@ -22,10 +22,6 @@ if ! make lint; then failed=1 fi -if ! terraform fmt -write -recursive deploy/infrastructure/terraform/; then - failed=1 -fi - if ! rufo deploy/infrastructure/vagrant/Vagrantfile; then failed=1 fi diff --git a/README.md b/README.md index 6a3003ec..3f7da4cb 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Playground -The playground is an example deployment for learning and testing Tinkerbell. It is not a production reference architecture. +The playground is an example deployment of the Tinkerbell stack for use in learning and testing. It is not a production reference architecture. Please use the [Helm chart](https://github.com/tinkerbell/charts) for production deployments. ## Quick-Starts @@ -13,7 +13,6 @@ Pick the one that works best for you. - [Vagrant and VirtualBox](docs/quickstarts/VAGRANTVBOX.md) - [Vagrant and Libvirt](docs/quickstarts/VAGRANTLVIRT.md) -- [Terraform and Equinix Metal](docs/quickstarts/TERRAFORMEM.md) - [Kubernetes](docs/quickstarts/KUBERNETES.md) ## Next Steps diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..037dd770 --- /dev/null +++ b/shell.nix @@ -0,0 +1,20 @@ +let _pkgs = import { }; +in { pkgs ? import (_pkgs.fetchFromGitHub { + owner = "NixOS"; + repo = "nixpkgs"; + #branch@date: master@2022-06-02 + rev = "17e891b141ca8e599ebf6443d0870a67dd98f94f"; + sha256 = "0qiyl04s4q0b3dhvyryz10hfdqhb2c7hk2lqn5llsb8lxsqj07l9"; +}) { } }: + +with pkgs; + +mkShell { + buildInputs = [ + nodePackages.prettier + jq + shellcheck + shfmt + rufo + ]; +}