forked from SumoLogic/sumologic-kubernetes-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
62 lines (61 loc) · 1.63 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{ pkgs ? import (
builtins.fetchGit {
name = "nixos-unstable-2023-04-13";
url = "https://github.com/nixos/nixpkgs/";
# Commit hash for nixos-unstable as of 2023-04-13
# `git ls-remote https://github.com/nixos/nixpkgs nixos-unstable`
ref = "refs/heads/nixos-unstable";
rev = "fe2ecaf706a5907b5e54d979fbde4924d84b65fc";
}
) {}
}:
pkgs.mkShell {
packages = [
pkgs.kubectl
pkgs.kubernetes-helm
pkgs.jq
pkgs.yq-go
pkgs.nodePackages.markdown-link-check
pkgs.nodePackages.markdownlint-cli
pkgs.nodePackages.prettier
pkgs.python311
pkgs.python311Packages.pyyaml
pkgs.python311Packages.towncrier
pkgs.shellcheck
pkgs.golangci-lint
pkgs.go
pkgs.kind
];
}
## Output of `make tool-versions`:
#
# kubectl version --client=true --short 2>/dev/null
# Client Version: v1.26.3
# Kustomize Version: v4.5.7
# helm version
# version.BuildInfo{Version:"v3.11.2", GitCommit:"v3.11.2", GitTreeState:"", GoVersion:"go1.20.3"}
# jq --version
# jq-1.6
# yq --version
# yq (https://github.com/mikefarah/yq/) version v4.33.2
# markdown-link-check --version
# 3.10.3
# markdownlint --version
# 0.33.0
# prettier --version
# 2.8.4
# python -V
# Python 3.11.2
# towncrier --version
# towncrier, version 22.12.0
# shellcheck --version
# ShellCheck - shell script analysis tool
# version: 0.9.0
# license: GNU General Public License, version 3
# website: https://www.shellcheck.net
# golangci-lint version
# golangci-lint has version 1.52.2 built with go1.20.3 from v1.52.2 on 19700101-00:00:00
# go version
# go version go1.20.3 linux/amd64
# kind version
# kind v0.17.0 go1.20.3 linux/amd64