본문 바로가기
SMALL

전체 글52

Wind Wind (CBT) store.steampowered.com/app/1510390/Wind_Wind/ Wind Wind on Steam Wind Wind is a puzzle adventure game. Lead the souls to the top floor of the tower, avoiding robots and the black star which are in the... store.steampowered.com 찜해두고 있었던 vr 게임 Wind Wind가 Eliot이라는 국내 개발사 게임이었네요. CBT에 당첨이 되어 리뷰보다는 개선 의견 위주로 적어봅니다. 입바람 축구처럼 컨트롤러로 바람을 일으켜 캐릭터를 움직이고 최종 목적지까지 가게 하면 레벨을 통과하는 퍼즐 게임입니다. 그래픽 그래픽이 아기자기하고 귀엽습.. 2021. 2. 28.
yaml - to quote or not to quote? yaml의 string을 표현할 때 quote(single or double)를 사용해야 하는가? 사용해야 하면 single or double? www.yaml.info/learn/quote.html Quoting - Learn - yaml.info To Quote or not to Quote? This article covers scalar styles in YAML 1.1 and 1.2. It mostly works the same in both versions. One design goal of YAML was that it's human friendly. It should be easy to read and edit, even if that makes parsing it harder. Let' w.. 2021. 2. 18.
Helm - Developing Templates - Named Templates Named Templates partial 혹은 subtemplate이라고도 불리는데 이게 더 직관적인 듯. template name은 전역이라 중복이 되면 가장 나중에 로드된 것만 쓰이므로 조심. PARTIALS AND _ FILES NOTES.txt를 제외하고 templates/ 이하의 파일들은 k8s 파일로 간주됨. 그리도 _로 시작하는 파일도 k8s 파일로 간주되지 않음. 주로 chart subtemplates으로써의 helpers로 사용된다. DECLARING AND USING TEMPLATES WITH DEFINE AND TEMPLATE define action으로 template 정의 가능. 그리고 template action으로 사용한다. {{- define "mychart.labels" .. 2021. 2. 18.
Helm - Developing Templates - Variables Variables with function을 사용하면 .Release.Name 같은 Built-In Objects를 사용하지 못하게 되는데, 변수를 사용하여 이용할 수 있다. apiVersion: v1 kind: ConfigMap ... data: {{- $relname := .Release.Name -}} {{- with .Values.favorite }} food: {{ .food | upper | quote }} release: {{ $relname }} {{- end }} assignment operator는 := 을 사용하고 재할당할 때는 = 을 사용. 2021. 2. 18.