[ML] MLOps - Kubernetes

GisangLee·2022년 8월 2일
0

ML

목록 보기
123/141

1. YAML

데이터 직렬화에 쓰이는 포맷 중 하나

특징

  • 가독성
apiVersion: v1
kind: Pod
metatdata:
	name: example
spec:
	container:
    	- name: busybox
          image: busybox:1.25
  • 범용성
    - kubernetes 명세
    - docker compose 명세
    - github action workflow 명세

2. YAML 문법

string

  • 따옴표 없이 써도 되고 따옴표로 감싸도 된다.

integer

example: 123

boolean

example: true
example: false

:, {, }, ,, #, *, =, \n 등 특수 문자

example: "a : b"
example: "a#bc"

List

example:
	- ex_one: 1
    - ex_two: 2
    
example: ["1", "2"]

profile
포폴 및 이력서 : https://gisanglee.github.io/web-porfolio/

0개의 댓글