Move Guide topics: Federation Tasks. (#2799)

This commit is contained in:
Steve Perry
2017-03-13 21:32:17 -07:00
committed by GitHub
parent 151f2968ba
commit 4dce53334c
17 changed files with 983 additions and 916 deletions
+2 -35
View File
@@ -2,39 +2,6 @@
title: Federated Events
---
This guide explains how to use events in federation control plane to help in debugging.
{% include user-guide-content-moved.md %}
* TOC
{:toc}
## Prerequisites
This guide assumes that you have a running Kubernetes Cluster
Federation installation. If not, then head over to the
[federation admin guide](/docs/admin/federation/) to learn how to
bring up a cluster federation (or have your cluster administrator do
this for you). Other tutorials, for example
[this one](https://github.com/kelseyhightower/kubernetes-cluster-federation)
by Kelsey Hightower, are also available to help you.
You are also expected to have a basic
[working knowledge of Kubernetes](/docs/getting-started-guides/) in
general.
## Overview
Events in federation control plane (referred to as "federation events" in
this guide) are very similar to the traditional Kubernetes
Events providing the same functionality.
Federation Events are stored only in federation control plane and are not passed on to the underlying Kubernetes clusters.
Federation controllers create events as they process API resources to surface to the
user, the state that they are in.
You can get all events from federation apiserver by running:
```shell
kubectl --context=federation-cluster get events
```
The standard kubectl get, update, delete commands will all work.
[Federated Evemts](/docs/tasks/administer-federation/events/)