Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
ce7ad36b
Unverified
Commit
ce7ad36b
authored
Oct 11, 2018
by
knight
Committed by
GitHub
Oct 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup pkg/apis/core/types.go
cleanup pkg/apis/core/types.go
parent
539bdbc3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
types.go
pkg/apis/core/types.go
+7
-7
No files found.
pkg/apis/core/types.go
View file @
ce7ad36b
...
...
@@ -26,19 +26,19 @@ import (
const
(
// NamespaceDefault means the object is in the default namespace which is applied when not specified by clients
NamespaceDefault
string
=
"default"
NamespaceDefault
=
"default"
// NamespaceAll is the default argument to specify on a context when you want to list or filter resources across all namespaces
NamespaceAll
string
=
""
NamespaceAll
=
""
// NamespaceNone is the argument for a context when there is no namespace.
NamespaceNone
string
=
""
NamespaceNone
=
""
// NamespaceSystem is the system namespace where we place system components.
NamespaceSystem
string
=
"kube-system"
NamespaceSystem
=
"kube-system"
// NamespacePublic is the namespace where we place public info (ConfigMaps)
NamespacePublic
string
=
"kube-public"
NamespacePublic
=
"kube-public"
// NamespaceNodeLease is the namespace where we place node lease objects (used for node heartbeats)
NamespaceNodeLease
string
=
"kube-node-lease"
NamespaceNodeLease
=
"kube-node-lease"
// TerminationMessagePathDefault means the default path to capture the application termination message running in a container
TerminationMessagePathDefault
string
=
"/dev/termination-log"
TerminationMessagePathDefault
=
"/dev/termination-log"
)
// Volume represents a named volume in a pod that may be accessed by any containers in the pod.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment