cmd

package
v1.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 25, 2020 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Overview

Copyright © 2020 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2020 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not env this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2020 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not project this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2020 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright © 2020 NAME HERE <EMAIL ADDRESS>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Execute

func Execute()

Execute adds all child commands to the root command and sets flags appropriately. This is called by main.main(). It only needs to happen once to the rootCmd.

func GenerateKubeConfig

func GenerateKubeConfig(agentId, organizationId, defaultNamespace string) error

func RefreshToken

func RefreshToken(config *CnoConfig) error

func SaveConfigOnFileSystem

func SaveConfigOnFileSystem(config CnoConfig) error

Types

type CnoConfig

type CnoConfig struct {
	ServerUrl        string `json:"serverUrl"`
	OidcUrl          string `json:"oidcUrl"`
	OidcClientId     string `json:"oidcClientId"`
	OidcClientSecret string `json:"oidcClientSecret"`
	AccesToken       string `json:"accesToken"`
	OrganizationId   string `json:"organizationId"`
	GroupId          string `json:"groupId"`
	ProjectId        string `json:"projectId"`
	EnvironmentId    string `json:"environmentId"`
}

func LoadCnoConfig

func LoadCnoConfig() (*CnoConfig, error)

type Environment

type Environment struct {
	ID                    string `json:"id"`
	Name                  string `json:"name" validate:"required"`
	Status                string `json:"status"`
	CpuUsedPercentage     uint   `json:"cpuUsedPercentage"`
	MemoryUsedPercentage  uint   `json:"memoryUsedPercentage"`
	StorageUsedPercentage uint   `json:"storageUsedPercentage"`
	ProjectID             string `json:"projectId"`
	GroupID               string `json:"groupId"`
	OrganizationID        string `json:"organizationId"`
}

type EnvironmentPaginate

type EnvironmentPaginate struct {
	TotalRecord int           `json:"totalRecord"`
	Records     []Environment `json:"records"`
	Limit       int           `json:"limit"`
	Page        int           `json:"page"`
}

type Group added in v1.5.1

type Group struct {
	ID             string `json:"id"`
	Name           string `json:"name" validate:"required"`
	OrganizationID string `json:"organizationId"`
}

type Organization

type Organization struct {
	ID   string `json:"id"`
	Name string `json:"name"`
}

type Project

type Project struct {
	ID             string        `json:"id" gorm:"primary_key"`
	Name           string        `json:"name" validate:"required"`
	TypeCluster    string        `json:"typeCluster" validate:"required"`
	GroupID        string        `json:"groupId"`
	OrganizationID string        `json:"organizationId"`
	Environments   []Environment `json:"environments" gorm:"foreignkey:ProjectID"`
	UidAgent       string        `json:"uidAgent"`
}

type ProjectPaginate

type ProjectPaginate struct {
	TotalRecord int       `json:"totalRecord"`
	Records     []Project `json:"records"`
	Limit       int       `json:"limit"`
	Page        int       `json:"page"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL