mirror of https://github.com/k3s-io/k3s
117 lines
4.0 KiB
Go
117 lines
4.0 KiB
Go
/*
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
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 unversioned
|
|
|
|
import (
|
|
"k8s.io/kubernetes/pkg/api"
|
|
"k8s.io/kubernetes/pkg/api/latest"
|
|
"k8s.io/kubernetes/pkg/apis/extensions"
|
|
"k8s.io/kubernetes/pkg/fields"
|
|
"k8s.io/kubernetes/pkg/labels"
|
|
"k8s.io/kubernetes/pkg/watch"
|
|
)
|
|
|
|
// JobsNamespacer has methods to work with Job resources in a namespace
|
|
type JobsNamespacer interface {
|
|
Jobs(namespace string) JobInterface
|
|
}
|
|
|
|
// JobInterface exposes methods to work on Job resources.
|
|
type JobInterface interface {
|
|
List(label labels.Selector, field fields.Selector) (*extensions.JobList, error)
|
|
Get(name string) (*extensions.Job, error)
|
|
Create(job *extensions.Job) (*extensions.Job, error)
|
|
Update(job *extensions.Job) (*extensions.Job, error)
|
|
Delete(name string, options *api.DeleteOptions) error
|
|
Watch(label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
|
|
UpdateStatus(job *extensions.Job) (*extensions.Job, error)
|
|
}
|
|
|
|
// jobs implements JobsNamespacer interface
|
|
type jobs struct {
|
|
r *ExperimentalClient
|
|
ns string
|
|
}
|
|
|
|
// newJobs returns a jobs
|
|
func newJobs(c *ExperimentalClient, namespace string) *jobs {
|
|
return &jobs{c, namespace}
|
|
}
|
|
|
|
// Ensure statically that jobs implements JobInterface.
|
|
var _ JobInterface = &jobs{}
|
|
|
|
// List returns a list of jobs that match the label and field selectors.
|
|
func (c *jobs) List(label labels.Selector, field fields.Selector) (result *extensions.JobList, err error) {
|
|
result = &extensions.JobList{}
|
|
err = c.r.Get().Namespace(c.ns).Resource("jobs").LabelsSelectorParam(label).FieldsSelectorParam(field).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Get returns information about a particular job.
|
|
func (c *jobs) Get(name string) (result *extensions.Job, err error) {
|
|
result = &extensions.Job{}
|
|
err = c.r.Get().Namespace(c.ns).Resource("jobs").Name(name).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Create creates a new job.
|
|
func (c *jobs) Create(job *extensions.Job) (result *extensions.Job, err error) {
|
|
result = &extensions.Job{}
|
|
err = c.r.Post().Namespace(c.ns).Resource("jobs").Body(job).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Update updates an existing job.
|
|
func (c *jobs) Update(job *extensions.Job) (result *extensions.Job, err error) {
|
|
result = &extensions.Job{}
|
|
err = c.r.Put().Namespace(c.ns).Resource("jobs").Name(job.Name).Body(job).Do().Into(result)
|
|
return
|
|
}
|
|
|
|
// Delete deletes a job, returns error if one occurs.
|
|
func (c *jobs) Delete(name string, options *api.DeleteOptions) (err error) {
|
|
if options == nil {
|
|
return c.r.Delete().Namespace(c.ns).Resource("jobs").Name(name).Do().Error()
|
|
}
|
|
|
|
body, err := api.Scheme.EncodeToVersion(options, latest.GroupOrDie("").GroupVersion)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return c.r.Delete().Namespace(c.ns).Resource("jobs").Name(name).Body(body).Do().Error()
|
|
}
|
|
|
|
// Watch returns a watch.Interface that watches the requested jobs.
|
|
func (c *jobs) Watch(label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) {
|
|
return c.r.Get().
|
|
Prefix("watch").
|
|
Namespace(c.ns).
|
|
Resource("jobs").
|
|
Param("resourceVersion", resourceVersion).
|
|
LabelsSelectorParam(label).
|
|
FieldsSelectorParam(field).
|
|
Watch()
|
|
}
|
|
|
|
// UpdateStatus takes the name of the job and the new status. Returns the server's representation of the job, and an error, if it occurs.
|
|
func (c *jobs) UpdateStatus(job *extensions.Job) (result *extensions.Job, err error) {
|
|
result = &extensions.Job{}
|
|
err = c.r.Put().Namespace(c.ns).Resource("jobs").Name(job.Name).SubResource("status").Body(job).Do().Into(result)
|
|
return
|
|
}
|