cmd

package
v1.1.6 Latest Latest
Warning

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

Go to latest
Published: Sep 10, 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, companyId, 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"`
	CompanyId        string `json:"companyId"`
	OrganizationId   string `json:"organizationId"`
	ProjectId        string `json:"projectId"`
	EnvironmentId    string `json:"environmentId"`
}

func LoadCnoConfig

func LoadCnoConfig() (*CnoConfig, error)

type Company

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

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"`
	OrganizationID        string `json:"organizationId"`
	CompanyID             string `json:"companyId"`
}

type EnvironmentPaginate

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

type Organization

type Organization struct {
	ID        string `json:"id"`
	Name      string `json:"name" validate:"required"`
	CompanyID string `json:"companyId"`
}

type Project

type Project struct {
	ID             string        `json:"id" gorm:"primary_key"`
	Name           string        `json:"name" validate:"required"`
	TypeCluster    string        `json:"typeCluster" validate:"required"`
	OrganizationID string        `json:"organizationId"`
	CompanyID      string        `json:"companyId"`
	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