2018-06-29 11:17:00 -04:00
|
|
|
/*
|
|
|
|
Copyright The containerd Authors.
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package platforms
|
|
|
|
|
2024-05-26 05:50:13 -04:00
|
|
|
// DefaultString returns the default string specifier for the platform,
|
|
|
|
// with [PR#6](https://github.com/containerd/platforms/pull/6) the result
|
|
|
|
// may now also include the OSVersion from the provided platform specification.
|
2018-09-05 14:54:38 -04:00
|
|
|
func DefaultString() string {
|
2024-05-26 05:50:13 -04:00
|
|
|
return FormatAll(DefaultSpec())
|
2018-06-29 11:17:00 -04:00
|
|
|
}
|
|
|
|
|
2021-06-21 11:08:47 -04:00
|
|
|
// DefaultStrict returns strict form of Default.
|
|
|
|
func DefaultStrict() MatchComparer {
|
|
|
|
return OnlyStrict(DefaultSpec())
|
|
|
|
}
|