Files
haskell/examples/package.yaml

34 lines
680 B
YAML
Raw Normal View History

name: kubernetes-examples
version: 0.1.0.1
description: |
Examples to interact with Kubernetes using kubernetes-client and kubernetes-client-core
synopsis: Kubernetes examples with Haskell
maintainer:
- Shimin Guo <smguo2001@gmail.com>
- Akshay Mankar <itsakshaymankar@gmail.com>
category: Examples, Kubernetes
license: Apache-2.0
license-file: LICENSE
executables:
simple:
main: Main.hs
source-dirs: simple
ghc-options:
- -Wall
2019-09-06 17:03:43 +02:00
in-cluster:
main: Main.hs
source-dirs: in-cluster
ghc-options:
- -Wall
dependencies:
2022-12-12 22:10:05 -08:00
- base < 5
- containers
- http-client
- http-types
- kubernetes-client
- kubernetes-client-core
- safe-exceptions
- stm
- text