Skip to main content
  1. Posts/

Hello World

·223 words·2 mins·
Table of Contents

Oha! I’m a teapot

It’s very interesting sometimes to test Golang blogging platforms

This is a sample YAML manifest 😄 🆒 😎

{{- if (and (ne (.Values.ui.ingress.enabled | toString ) "-") .Values.ui.ingress.enabled) }}
{{- $serviceName := printf "%s-%s" (include "vault.fullname" .) "ui" -}}
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: {{ template "vault.fullname" . }}-ingress
  namespace: {{ .Release.Namespace }}
  labels:
    app: {{ template "vault.name" . }}
    chart: {{ template "vault.chart" . }}
    heritage: {{ .Release.Service }}
    release: {{ .Release.Name }}
  {{- if .Values.ui.ingress.annotations }}
  annotations:
{{ toYaml .Values.ui.ingress.annotations | indent 4 }}
  {{- end }}
spec:
  rules:
    {{- range .Values.ui.ingress.hosts }}
    - host: {{ . }}
      http:
        paths:
          - backend:
              serviceName: {{ $serviceName }}
              servicePort: http
    {{- end -}}
  {{- if .Values.ui.ingress.tls }}
  tls:
    {{- range $value := .Values.ui.ingress.tls }}
    - hosts:
      {{- range $value.hosts }}
      - {{ . }}
      {{- end }}
      secretName: {{ $value.secretName }}
    {{- end }}
  {{- end }}
{{- end }}

Some python sample code #

#!/usr/bin/python3

from engine import RunForrestRun

"""Test code for syntax highlighting!"""

class Foo:
	def __init__(self, var):
		self.var = var
		self.run()

	def run(self):
		RunForrestRun()  # run along!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/usr/bin/python3

from engine import RunForrestRun

"""Test code for syntax highlighting!"""

class Foo:
	def __init__(self, var):
		self.var = var
		self.run()

	def run(self):
		RunForrestRun()  # run along!

test1234