Categorygithub.com/ajarombek/cloud-modules/kubernetes-test-functions
package
0.2.17
Repository: https://github.com/ajarombek/cloud-modules.git
Documentation: pkg.go.dev

# README

Overview

Reusable functions for testing Kubernetes infrastructure. Functions are written in Go with the help of the Kubernetes Go client module.

Usage

In an implementing modules go.mod file:

require(
    github.com/ajarombek/cloud-modules/k8s-test-functions v0.2.18
)

In an implementing modules Go source code:

package main

import (
	k8sfuncs "github.com/ajarombek/cloud-modules/k8s-test-functions"
)

Commands

Initial Setup of the module

go mod init github.com/ajarombek/cloud-modules/k8s-test-functions
go get k8s.io/[email protected]
go get k8s.io/[email protected]

Files

FilenameDescription
main.goFunctions to assist Kubernetes tests.
go.modGo module definition and dependency specification.
go.sumVersions of modules installed as dependencies for this Go module.

Resources

  1. go.mod reference