-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: generate initial docs and release first version (#3)
docs: generate initial docs and release first version
- Loading branch information
1 parent
50ad595
commit 5ad9520
Showing
2 changed files
with
69 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
name: terraform | ||
on: | ||
push: | ||
paths: | ||
- '**.tf' | ||
on: push | ||
env: | ||
TF_CHDIR: -chdir=examples/basic | ||
jobs: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# terraform-k8s-feast | ||
|
||
Feast terraform module for combinator.ml | ||
|
||
## Usage | ||
|
||
```terraform | ||
module "feast" { | ||
source = "combinator-ml/feast/k8s" | ||
version = "0.0.0" | ||
} | ||
``` | ||
|
||
See the full configuration options below. | ||
|
||
### Stack Creation | ||
|
||
```bash | ||
KUBE_CONFIG_PATH=~/.kube/config terraform apply | ||
``` | ||
|
||
### Stack Deletion | ||
|
||
```bash | ||
KUBE_CONFIG_PATH=~/.kube/config terraform destroy | ||
``` | ||
|
||
## Known Issues | ||
|
||
- Why do you have to explicitly export the Kubernetes config? | ||
|
||
I found that hardcoding the kubeconfig led to [this terraform bug](https://github.com/terraform-aws-modules/terraform-aws-eks/issues/1234). | ||
|
||
## Requirements | ||
|
||
No requirements. | ||
|
||
## Providers | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| helm | n/a | | ||
| kubernetes | n/a | | ||
| random | n/a | | ||
|
||
## Modules | ||
|
||
No Modules. | ||
|
||
## Resources | ||
|
||
| Name | | ||
|------| | ||
| [helm_release](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) | | ||
| [kubernetes_namespace](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace) | | ||
| [kubernetes_secret](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/secret) | | ||
| [random_password](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/password) | | ||
|
||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| name\_prefix | Prefix to be used when naming the different components of Feast | `string` | `"combinator"` | no | | ||
| namespace | (Optional) The namespace to install into. Defaults to feast. | `string` | `"feast"` | no | | ||
|
||
## Outputs | ||
|
||
No output. |