gomotw

This is Golang Module Of The Week(gomotw) Developed by Pradeep Padmanaban C

View project on GitHub

String Template Golang

  • Fill template file with required values
package main

import (
	"bytes"
	"fmt"
	"text/template"
)

func main() {

	testTempalate := `apiVersion: apps/v1
kind: Deployment
metadata:
  name: 
  namespace: 
spec:
  replicas: 
  selector:
    matchLabels:
      app: 
      version: v1
  template:
    metadata:
      labels:
        app: 
        version: v1
    spec:
      containers:
      - image: 
        args: 
        imagePullPolicy: IfNotPresent
        name: 
        ports:
        - containerPort: 80
        resources:
          limits:
            cpu: 
            memory: 
          requests:
            cpu: 
            memory: 
---
apiVersion: v1
kind: Service
metadata:
  name: 
  namespace: 
  labels:
    app: 
    service: 
spec:
  ports:
  - name: http-test
    port: 
    targetPort: 80
  selector:
    app: 
`

	tmpl, err := template.New("NamespaceTemplate").Parse(testTempalate)
	if err != nil {
		fmt.Println(err, "should not have occured")
	}
	var buffer bytes.Buffer
	err = tmpl.Execute(&buffer, map[string]interface{}{"Namespace": "test-namespace",
		"ServiceName":  "test-service",
		"InstantCount": 2,
		"ServicePort":  25200,
		"ImageName":    "test-image",
		"Fortioargs":   "['server','-http-port','0.0.0.0:80']",
		"Cpu":          "20m",
		"Memory":       "32Mi"})

	if err != nil {
		fmt.Println(err, "should not have occured")
	}
	tmplString := buffer.String()
	fmt.Println(tmplString)

}

  • Output should have targetted filled with respective values
 % go run string_templates.go
apiVersion: apps/v1
kind: Deployment
metadata:
  name: test-service
  namespace: test-namespace
spec:
  replicas: <no value>
  selector:
    matchLabels:
      app: test-service
      version: v1
  template:
    metadata:
      labels:
        app: test-service
        version: v1
    spec:
      containers:
      - image: test-image
        args: ['server','-http-port','0.0.0.0:80']
        imagePullPolicy: IfNotPresent
        name: test-service
        ports:
        - containerPort: 80
        resources:
          limits:
            cpu: 20m
            memory: 32Mi
          requests:
            cpu: 20m
            memory: 32Mi
---
apiVersion: v1
kind: Service
metadata:
  name: test-service
  namespace: test-namespace
  labels:
    app: test-service
    service: test-service
spec:
  ports:
  - name: http-test
    port: 25200
    targetPort: 80
  selector:
    app: test-service