forked from k3d-io/k3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thorsten Klein
committed
Sep 6, 2019
1 parent
73efb98
commit 433ff16
Showing
8 changed files
with
122 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ _dist/ | |
*.out | ||
|
||
# Editors | ||
.vscode/ | ||
.vscode/ | ||
.local/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
Copyright © 2019 Thorsten Klein <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
*/ | ||
package cluster | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/rancher/k3d/pkg/types" | ||
) | ||
|
||
// CheckClusterName ensures that a cluster name is also a valid host name according to RFC 1123. | ||
// We further restrict the length of the cluster name to maximum 'clusterNameMaxSize' | ||
// so that we can construct the host names based on the cluster name, and still stay | ||
// within the 64 characters limit. | ||
func CheckClusterName(name string) error { | ||
if err := ValidateHostname(name); err != nil { | ||
return fmt.Errorf("Invalid cluster name. %+v", ValidateHostname(name)) | ||
} | ||
if len(name) > types.DefaultClusterNameMaxLength { | ||
return fmt.Errorf("Cluster name must be <= %d characters, but has %d", types.DefaultClusterNameMaxLength, len(name)) | ||
} | ||
return nil | ||
} | ||
|
||
// ValidateHostname ensures that a cluster name is also a valid host name according to RFC 1123. | ||
func ValidateHostname(name string) error { | ||
|
||
if len(name) == 0 { | ||
return fmt.Errorf("No name provided") | ||
} | ||
|
||
if name[0] == '-' || name[len(name)-1] == '-' { | ||
return fmt.Errorf("Hostname '%s' must not start or end with '-' (dash)", name) | ||
} | ||
|
||
for _, c := range name { | ||
switch { | ||
case '0' <= c && c <= '9': | ||
case 'a' <= c && c <= 'z': | ||
case 'A' <= c && c <= 'Z': | ||
case c == '-': | ||
break | ||
default: | ||
return fmt.Errorf("Hostname '%s' contains characters other than 'Aa-Zz', '0-9' or '-'", name) | ||
|
||
} | ||
} | ||
|
||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
Copyright © 2019 Thorsten Klein <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
*/ | ||
package docker | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/docker/docker/api/types/filters" | ||
k3d "github.com/rancher/k3d/pkg/types" | ||
) | ||
|
||
// GetDefaultObjectLabelsFilter returns docker type filters created from k3d labels | ||
func GetDefaultObjectLabelsFilter(clusterName string) filters.Args { | ||
filters := filters.NewArgs() | ||
for key, value := range k3d.DefaultObjectLabels { | ||
filters.Add("label", fmt.Sprintf("%s=%s", key, value)) | ||
} | ||
filters.Add("label", fmt.Sprintf("cluster=%s", clusterName)) | ||
return filters | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.