일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- Kubernetes
- minikube
- 정보처리기사실기 기출문제
- kotlin spring
- Java
- 공부
- 티스토리챌린지
- PETERICA
- Spring
- 정보처리기사 실기
- kotlin querydsl
- CKA 기출문제
- 정보처리기사 실기 기출문제
- CloudWatch
- AI
- APM
- kotlin coroutine
- Elasticsearch
- CKA
- aws
- Pinpoint
- 코틀린 코루틴의 정석
- 오블완
- 기록으로 실력을 쌓자
- IntelliJ
- mysql 튜닝
- AWS EKS
- kotlin
- Linux
- Today
- Total
목록DevOps/Terraform (2)
피터의 개발이야기
ㅁ 들어가며ㅇ Terraform으로 minikube를 구축하는 테스트를 진행해 보았습니다. ㅁ minikube 환경ㅇ minikube의 기본으로 설치하였다. ㅇ minikube를 우선 시작한 후에 terraform으로 내부 리소스를 생성한다. ㅁ Provider 설정terraform { required_providers { kubernetes = { source = "hashicorp/kubernetes" version = "2.11.0" } }}provider "kubernetes" { config_path = "~/.kube/config" config_context = "minikube"}ㅇ providers.tf 파일을 생성하였다. ㅁ k8s 설정resour..
ㅁ 들어가며ㅇ Terraform를 로컬에서 사용해 보기 위해 docker로 설치하는 과정이다. ㅁ Terraform 설치# 패키지 저장소 HashiCorp 탭을 설치$ brew tap hashicorp/tap# terraform 설치$ brew install hashicorp/tap/terraform# 설치확인$ terraform --helpUsage: terraform [global options] [args]The available commands for execution are listed below.The primary workflow commands are given first, followed byless common or more advanced commands.~~~~~# 개별 명령어 상..