https://github.com/whywaita/techbookfest7-app
技術書典7 「PR-based Preview Env in Kubernetes」 サンプルアプリケーションリポジトリ
https://github.com/whywaita/techbookfest7-app
Last synced: 8 months ago
JSON representation
技術書典7 「PR-based Preview Env in Kubernetes」 サンプルアプリケーションリポジトリ
- Host: GitHub
- URL: https://github.com/whywaita/techbookfest7-app
- Owner: whywaita
- Created: 2019-09-21T04:04:46.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T20:30:53.000Z (over 6 years ago)
- Last Synced: 2025-05-25T15:49:17.692Z (10 months ago)
- Language: Go
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# techbookfest7-app
## ディレクトリ構成
```
techbookfest7-app
├── README.md
├── sample-app
│ ├── terraform
| | ├── README.md
| | ├── seeds.yaml
| | ├── modules
| | | └── provider
| | | └── main.tf
| | ├── resources
| | | ├── common
| | | | └── api
| | | | └── main.tf
| | | ├── prd
| | | | ├── init.tf
| | | | ├── routers.tf
| | | | ├── service_account.tf
| | | | ├── vpc.tf
| | | | ├── variables.tf
| | | | ├── provider.tf
| | | | └── gke.tf
| | | └── dev
| | └── .terraform-version
│ ├── kustomize
| | ├── README.md
| | ├── seeds.yaml
│ │ ├── base
│ │ │ ├── kustomization.yaml
│ │ │ └── service.yaml
│ │ └── overlays
│ │ ├── prd
│ │ │ ├── kustomization.yaml
│ │ │ └── service.yaml
│ │ └── dev
│ │ ├── kustomization.yaml
│ │ └── service.yaml
└── cluster-generator
├── terraform
| ├── README.md
│ └── dir
├── kustomize
| ├── README.md
│ ├── base
│ │ ├── kustomization.yaml
│ │ └── service.yaml
│ └── overlays
│ └── prd
│ ├── kustomization.yaml
│ └── service.yaml
└── apps
├── README.md
├── gateway-app
| ├── README.md
│ ├── Dockerfile
│ └── dir
├── kustomization-app
| ├── README.md
│ ├── Dockerfile
│ └── dir
└── terraforming-app
├── README.md
├── Dockerfile
└── dir
```