Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.

Commit 6d3dedd

Browse files
ocket8888Rawlin Peters
authored andcommitted
Docs/influx fix (#4037)
* Moved some images, unset executable bit and shebang on non-executable file * Fixed some documentation warnings generated from Python files * Added kickstart setup QHT * Added cache group / region /division overview * Moved traffic ops administration into a single sub-section Also added documentation for the Traffic Ops configuration files * Fix Influx config defaulting to secure * Fix inaccurate link, add versionadded directive to smtp config section * clarify the purpose of 'workers'
1 parent aa6f608 commit 6d3dedd

21 files changed

Lines changed: 811 additions & 605 deletions

File tree

File renamed without changes.
File renamed without changes.

docs/source/admin/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Once everything is installed, you will need to configure the servers to talk to
3636
:maxdepth: 3
3737
:glob:
3838

39-
traffic_ops/*
39+
traffic_ops.rst
4040
traffic_portal/*
4141
traffic_monitor.rst
4242
traffic_router.rst
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
..
2+
..
3+
.. Licensed under the Apache License, Version 2.0 (the "License");
4+
.. you may not use this file except in compliance with the License.
5+
.. You may obtain a copy of the License at
6+
..
7+
.. http://www.apache.org/licenses/LICENSE-2.0
8+
..
9+
.. Unless required by applicable law or agreed to in writing, software
10+
.. distributed under the License is distributed on an "AS IS" BASIS,
11+
.. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
.. See the License for the specific language governing permissions and
13+
.. limitations under the License.
14+
..
15+
16+
.. _Creating-CentOS-Kickstart:
17+
18+
**********************************
19+
Creating the CentOS Kickstart File
20+
**********************************
21+
The Kickstart file is a text file, containing a list of items, each identified by a keyword. This file can be generated using the `Red Hat Kickstart Configurator application <https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/5/html/installation_guide/ch-redhat-config-kickstart>`_, or it can be written from scratch. The Red Hat Enterprise Linux installation program also creates a sample Kickstart file based on the options selected during installation. It is written to the file :file:`/root/anaconda-ks.cfg` in this case. This file is editable using most text editors.
22+
23+
Generating a System Image
24+
=========================
25+
#. Create a Kickstart file.
26+
#. Create a boot media with the Kickstart file or make the Kickstart file available on the network.
27+
#. Make the installation tree available.
28+
#. Start the Kickstart installation.
29+
30+
.. code-block:: shell
31+
:caption: Creating a New System Image Definition Tree from an Existing One
32+
33+
# Starting from the Kickstart root directory (`/var/www/files` by default)
34+
mkdir newdir
35+
cd newdir/
36+
37+
# In this example, the pre-existing system image definition tree is for CentOS 7.4 located in `centos74`
38+
cp -r ../centos74/* .
39+
vim ks.src
40+
vim isolinux/isolinux.cfg
41+
cd ..
42+
vim osversions.cfg
43+
44+
:file:`ks.src` is a standard, Kickstart-formatted file that the will be used to create the Kickstart (ks.cfg) file for the install whenever a system image is generated from the source tree. :file:`ks.src` is a template - it will be overwritten by any information set in the form submitted from :menuselection:`Tools --> Generate ISO` in Traffic Portal. Ultimately, the two are combined to create the final Kickstart file (:file:`ks.cfg`).
45+
46+
.. Note:: It is highly recommended for ease of use that the system image source trees be kept under 1GB in size.
47+
48+
.. seealso:: For in-depth instructions, please see `Kickstart Installation <https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/s1-kickstart2-howuse.html>`_ in the Red Hat documentation.

docs/source/admin/traffic_ops.rst

Lines changed: 708 additions & 0 deletions
Large diffs are not rendered by default.

docs/source/admin/traffic_ops/configuration.rst

Lines changed: 0 additions & 191 deletions
This file was deleted.

0 commit comments

Comments
 (0)