* [Fix] Relocate User Permanent SSH Public Key queries to DevcontainerService Layer * [Fix] Add Unix Timestamps in DB table `devstar_devcontainer` * [Feature] Tencent NAT port forwarding * [Doc] k8s Operator RBAC: ServiceAccount, ClusterRole, ClusterRoleBinding, etc. * [fix] k8s Operator Reconciler error while converting YAML to JSON * [Doc] Added DevStar API Doc * [fix] detailed errors while listing user devcontainers * [fix] Invalid metadata.labels: value must be no more than 63 characters
9 lines
200 B
Go
9 lines
200 B
Go
package errors
|
|
|
|
type ErrCloudNATProviderDisabled struct {
|
|
}
|
|
|
|
func (err ErrCloudNATProviderDisabled) Error() string {
|
|
return "Failed to create NAT Rule since the DevStar Cloud Provider is Disabled"
|
|
}
|