Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 39312a2

Browse files
author
Dongsu Park
committed
Merge pull request #1726 from ElijahCaine/fleet-deprecation-notice
Docs: Add fleet deprecation notice to docs.
2 parents aad7239 + ae4684d commit 39312a2

9 files changed

+16
-1
lines changed

Documentation/api-v1-alpha.md

-1
This file was deleted.

Documentation/api-v1.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# fleet API v1
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
The fleet API allows you to manage the state of the cluster using JSON over HTTP.
46

57
## Managing Units

Documentation/architecture.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Architecture
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
## fleetd
46

57
Every system in the fleet cluster runs a single `fleetd` daemon. Each daemon encapsulates two roles: the *engine* and the *agent*. An engine primarily makes scheduling decisions while an agent executes units. Both the engine and agent use the _reconciliation model_, periodically generating a snapshot of "current state" and "desired state" and doing the necessary work to mutate the former towards the latter.

Documentation/deployment-and-configuration.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Deploying fleet
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
Deploying `fleet` is as simple as dropping the `fleetd` binary on a machine with access to etcd and starting it.
46

57
Deploying `fleet` on CoreOS is even simpler: just run `systemctl start fleet`. The built-in configuration assumes each of your hosts is serving an etcd endpoint at one of the default locations (http://127.0.0.1:2379 or http://127.0.0.1:4001). However, if your etcd cluster differs, you must make the corresponding configuration changes.

Documentation/examples/example-deployment.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Deploying a Service Using fleet
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
The following is an example of how one might deploy a load-balanced web service using fleet.
46
This example deploys [subgun][subgun], a simple subscription tool for [mailgun][mailgun].
57

Documentation/examples/service-discovery.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Service Discovery
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
Since applications and networking environments vary widely between customer deployments, fleet does not provide a generalized, integrated solution for service discovery. However, there are a number of patterns available which can easily be implemented on top of fleet to provide automated and reliable service discovery. One such pattern, the _sidekick model_, is described below.
46

57
## Sidekick model

Documentation/rkt_guide.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Running fleetd under rkt
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
The following guide will show you how to run fleetd under rkt.
46

57
## Building fleet ACI

Documentation/unit-files-and-scheduling.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Unit Files
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
Unit files are the primary means of interacting with fleet. They define what you want to do, and how fleet should do it.
46

57
fleet will schedule any valid service, socket, path or timer systemd unit to a machine in the cluster, taking into account a few special properties in the `[X-Fleet]` section. If you're new to using systemd unit files, check out the [Getting Started with systemd guide][systemd-guide].

Documentation/using-the-client.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Using the Client
22

3+
**[fleet is no longer actively developed or maintained by CoreOS](https://coreos.com/blog/migrating-from-fleet-to-kubernetes.html). CoreOS instead recommends [Kubernetes](https://coreos.com/kubernetes/docs/latest/) for cluster orchestration.**
4+
35
fleet provides a command-line tool called `fleetctl`. The commands provided by
46
`fleetctl` are analogous to those of systemd's CLI, `systemctl`.
57

0 commit comments

Comments
 (0)