1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30

fix yaml parsing error

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2022-09-14 00:16:32 +05:30
parent e41f2e4520
commit 2ba5689a76
2 changed files with 4 additions and 8 deletions
@@ -4,11 +4,7 @@ date: 2022-02-27 20:47
modified: 2022-03-07 22:47 modified: 2022-03-07 22:47
category: development category: development
tags: [tekton, go, kubernetes, openshift, redhat, intern, golang, openshift-pipelines] tags: [tekton, go, kubernetes, openshift, redhat, intern, golang, openshift-pipelines]
description: This blog is a descreptive account of the development of Minimal Tekton Server. description: This blog is a descreptive account of the development of Minimal Tekton Server. This is highly technical in nature, so please make sure that you have sufficient knowledge about Golang, Docker, Kubernetes and TektonCD. You can refer to my [previous blog]("https://avinal.space/posts/development/i-am-loving-it-redhat.html") to know about these topics.
This is highly technical in nature, so please make sure that you have sufficient
knowledge about Golang, Docker, Kubernetes and TektonCD. You can refer to my
[previous blog]("https://avinal.space/posts/development/i-am-loving-it-redhat.html")
to know about these topics.
--- ---
# Developing Minimal Tekton Server # Developing Minimal Tekton Server
+3 -3
View File
@@ -302,8 +302,8 @@ metaDecoder =
Yaml.map7 YamlMeta Yaml.map7 YamlMeta
(field "title" string) (field "title" string)
(field "date" string) (field "date" string)
(field "description" (Yaml.maybe string)) (Yaml.maybe (field "description" string))
(field "tags" (list string)) (field "tags" (list string))
(field "category" string) (field "category" string)
(field "image" (Yaml.maybe string)) (Yaml.maybe (field "image" string))
(field "modified" (Yaml.maybe string)) (Yaml.maybe (field "modified" string))