Skip to content

wozniakjan/reverse-kube-resource

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reverse Kube Resources

test

This tool is intended to generate golang code tightly coupled with Kubernetes client-go.

The input are raw yaml manifests and the tool leverages Kubernetes scheme to generate valid golang structures compatible with client-go.

Example:

The directory examples contains few sample yaml files with kubernetes resources.

apiVersion: v1
kind: Namespace
metadata:
  name: test
spec: {}
status: {}

After executing the generator with following arguments:

$ go run github.com/wozniakjan/reverse-kube-resource -package test -src ./examples/ns.yaml > output/ns.go

The output is a buildable go file:

// Code generated by reverse-kube-resource. DO NOT EDIT.

package test

import (
        corev1 "k8s.io/api/core/v1"
        metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

var testNamespace = corev1.Namespace{
        ObjectMeta: metav1.ObjectMeta{
                Name: "test",
        },
        Spec:   corev1.NamespaceSpec{},
        Status: corev1.NamespaceStatus{},
}

About

Revert kubernetes yaml files to native go code

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •