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 ¶
- func Execute()
- func GenerateKubeConfig(agentId, organizationId, defaultNamespace string) error
- func RefreshToken(config *CnoConfig) error
- func SaveConfigOnFileSystem(config CnoConfig) error
- type CnoConfig
- type Environment
- type EnvironmentPaginate
- type Group
- type Organization
- type Project
- type ProjectPaginate
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 RefreshToken ¶
func SaveConfigOnFileSystem ¶
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 ¶
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 Organization ¶
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"` }