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
f40a471e
Commit
f40a471e
authored
Aug 02, 2016
by
Tamer Tas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the ContainerRuntime interface stub for rkt app level API
parent
5caf74c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
0 deletions
+71
-0
app-interface.go
pkg/kubelet/rktshim/app-interface.go
+71
-0
No files found.
pkg/kubelet/rktshim/app-interface.go
0 → 100644
View file @
f40a471e
/*
Copyright 2016 The Kubernetes 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
rktshim
import
(
"io"
kubeletApi
"k8s.io/kubernetes/pkg/kubelet/api"
runtimeApi
"k8s.io/kubernetes/pkg/kubelet/api/v1alpha1/runtime"
)
// Runtime provides an API for lifecycle, inspection and introspection
// operations in a blocking manner using the App level API provided by rkt.
type
Runtime
struct
{}
// TODO(tmrts): Fill out the creation configuration fields.
type
RuntimeConfig
struct
{}
// NewRuntime creates a container.Runtime instance using the Runtime.
func
NewRuntime
(
RuntimeConfig
)
(
kubeletApi
.
ContainerManager
,
error
)
{
return
&
Runtime
{},
nil
}
// CreateContainer creates an app inside the provided pod sandbox and returns the RawContainerID.
func
(
*
Runtime
)
CreateContainer
(
string
,
*
runtimeApi
.
ContainerConfig
,
*
runtimeApi
.
PodSandboxConfig
)
(
string
,
error
)
{
panic
(
"not implemented"
)
}
// StartContainer starts a created app.
func
(
*
Runtime
)
StartContainer
(
string
)
error
{
panic
(
"not implemented"
)
}
// StopContainer stops a running app with a grace period (i.e. timeout).
func
(
*
Runtime
)
StopContainer
(
string
,
int64
)
error
{
panic
(
"not implemented"
)
}
// RemoveContainer removes the app from a pod sandbox.
func
(
*
Runtime
)
RemoveContainer
(
string
)
error
{
panic
(
"not implemented"
)
}
// ListContainers lists out the apps residing inside the pod sandbox using the ContainerFilter.
func
(
*
Runtime
)
ListContainers
(
*
runtimeApi
.
ContainerFilter
)
([]
*
runtimeApi
.
Container
,
error
)
{
panic
(
"not implemented"
)
}
// ContainerStatus returns the RawContainerStatus of an app inside the pod sandbox.
func
(
*
Runtime
)
ContainerStatus
(
string
)
(
*
runtimeApi
.
ContainerStatus
,
error
)
{
panic
(
"not implemented"
)
}
// Exec executes a command inside an app running inside a pod sanbox.
func
(
*
Runtime
)
Exec
(
string
,
[]
string
,
bool
,
io
.
Reader
,
io
.
WriteCloser
,
io
.
WriteCloser
)
error
{
panic
(
"not implemented"
)
}
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