mirror of
https://github.com/wahyd4/cert-manager.git
synced 2026-08-08 20:58:17 +10:00
Remove docs/ directory and replace with basic README
Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
_build/
|
||||
@@ -1,34 +0,0 @@
|
||||
# Copyright 2019 The Jetstack cert-manager contributors.
|
||||
#
|
||||
# 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.
|
||||
|
||||
# Minimal makefile for Sphinx documentation
|
||||
#
|
||||
|
||||
# You can set these variables from the command line.
|
||||
SPHINXOPTS =
|
||||
SPHINXBUILD = sphinx-build
|
||||
SPHINXPROJ = cert-manager
|
||||
SOURCEDIR = .
|
||||
BUILDDIR = _build
|
||||
|
||||
# Put it first so that "make" without argument is like "make help".
|
||||
help:
|
||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
|
||||
.PHONY: help Makefile
|
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
%: Makefile
|
||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
@@ -1,2 +0,0 @@
|
||||
labels:
|
||||
- kind/documentation
|
||||
@@ -0,0 +1,9 @@
|
||||
# Documentation
|
||||
|
||||
The cert-manager documentation can be found on [cert-manager.io](https://cert-manager.io/docs).
|
||||
|
||||
## Contributing
|
||||
|
||||
If you'd like to make changes or contribute to the documentation, you can find
|
||||
the source code for the website in the [cert-manager/website](https://github.com/cert-manager/website)
|
||||
repository.
|
||||
@@ -1,80 +0,0 @@
|
||||
"""
|
||||
externalredirect
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Generate redirects to external files based on a single 'external_redirects' file
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from sphinx.builders import html as builders
|
||||
from sphinx.builders import linkcheck as linkcheckbuilders
|
||||
from sphinx.util import logging
|
||||
|
||||
TEMPLATE = """<html>
|
||||
<head><meta http-equiv="refresh" content="0; url=%s"/></head>
|
||||
</html>
|
||||
"""
|
||||
|
||||
SRC_TEMPLATE = """==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to %s.
|
||||
This placeholder file will be removed in a later release.
|
||||
"""
|
||||
|
||||
def generate_external_redirects(app, exception):
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
path = os.path.join(app.srcdir, app.config.external_redirects_file)
|
||||
if not os.path.exists(path):
|
||||
logger.info("Could not find redirects file at '%s'" % path)
|
||||
return
|
||||
|
||||
in_suffix = app.config.source_suffix
|
||||
if isinstance(in_suffix, list):
|
||||
in_suffix = in_suffix[0]
|
||||
if isinstance(in_suffix, dict):
|
||||
logger.info("app.config.source_suffix is a dictionary type. "
|
||||
"Defaulting source_suffix to '.rst'")
|
||||
in_suffix = ".rst"
|
||||
|
||||
if type(app.builder) == linkcheckbuilders.CheckExternalLinksBuilder:
|
||||
logger.info("Detected 'linkcheck' builder in use so skipping generating redirects")
|
||||
return
|
||||
|
||||
dirhtml = False
|
||||
if type(app.builder) == builders.DirectoryHTMLBuilder:
|
||||
dirhtml = True
|
||||
|
||||
with open(path) as redirects:
|
||||
for line in redirects.readlines():
|
||||
from_path, to_url = line.rstrip().split(' ')
|
||||
orig_from_path = from_path
|
||||
logger.info("Redirecting '%s' to '%s'" % (from_path, to_url))
|
||||
|
||||
if dirhtml:
|
||||
from_path = from_path.replace(in_suffix, '/index.html')
|
||||
else:
|
||||
from_path = from_path.replace(in_suffix, '.html')
|
||||
|
||||
logger.info("Resolved redirect '%s' to '%s'" % (from_path, to_url))
|
||||
|
||||
redirected_filename = os.path.join(app.builder.outdir, from_path)
|
||||
redirected_directory = os.path.dirname(redirected_filename)
|
||||
if not os.path.exists(redirected_directory):
|
||||
os.makedirs(redirected_directory)
|
||||
|
||||
logger.info("Writing to '%s'" % redirected_filename)
|
||||
with open(redirected_filename, 'w') as f:
|
||||
f.write(TEMPLATE % to_url)
|
||||
|
||||
input_rst_filename = os.path.join(app.srcdir, orig_from_path)
|
||||
with open(input_rst_filename, 'w') as f:
|
||||
f.write(SRC_TEMPLATE % to_url)
|
||||
|
||||
|
||||
def setup(app):
|
||||
app.add_config_value('external_redirects_file', 'external_redirects', 'env')
|
||||
app.connect('build-finished', generate_external_redirects)
|
||||
Vendored
-192
@@ -1,192 +0,0 @@
|
||||
# Copyright 2019 The Jetstack cert-manager contributors.
|
||||
#
|
||||
# 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.
|
||||
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Configuration file for the Sphinx documentation builder.
|
||||
#
|
||||
# This file does only contain a selection of the most common options. For a
|
||||
# full list see the documentation:
|
||||
# http://www.sphinx-doc.org/en/stable/config
|
||||
|
||||
# -- Path setup --------------------------------------------------------------
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
#
|
||||
import os
|
||||
import sys
|
||||
# sys.path.insert(0, os.path.abspath('.'))
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
|
||||
project = u'cert-manager'
|
||||
copyright = u'2018, Jetstack Ltd'
|
||||
author = u'Jetstack Ltd'
|
||||
|
||||
# The short X.Y version
|
||||
version = u''
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = u''
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
# If your documentation needs a minimal Sphinx version, state it here.
|
||||
#
|
||||
# needs_sphinx = '1.0'
|
||||
|
||||
sys.path.append(os.path.abspath("./_ext"))
|
||||
|
||||
# Add any Sphinx extension module names here, as strings. They can be
|
||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
# ones.
|
||||
extensions = [
|
||||
'sphinx.ext.todo',
|
||||
'sphinxcontrib.redirects',
|
||||
"externalredirect",
|
||||
]
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
|
||||
# The suffix(es) of source filenames.
|
||||
# You can specify multiple suffix as a list of string:
|
||||
#
|
||||
# source_suffix = ['.rst', '.md']
|
||||
source_suffix = '.rst'
|
||||
|
||||
# The master toctree document.
|
||||
master_doc = 'index'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
#
|
||||
# This is also used if you do content translation via gettext catalogs.
|
||||
# Usually you set "language" from the command line for these cases.
|
||||
language = None
|
||||
|
||||
# List of patterns, relative to source directory, that match files and
|
||||
# directories to ignore when looking for source files.
|
||||
# This pattern also affects html_static_path and html_extra_path .
|
||||
exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store']
|
||||
|
||||
html_extra_path = [u'generated/reference/output']
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
||||
todo_include_todos = True
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
#
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
|
||||
# Theme options are theme-specific and customize the look and feel of a theme
|
||||
# further. For a list of options available for each theme, see the
|
||||
# documentation.
|
||||
#
|
||||
html_theme_options = {
|
||||
'navigation_depth': 4
|
||||
}
|
||||
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ['_static']
|
||||
|
||||
# Custom sidebar templates, must be a dictionary that maps document names
|
||||
# to template names.
|
||||
#
|
||||
# The default sidebars (for documents that don't match any pattern) are
|
||||
# defined by theme itself. Builtin themes are using these templates by
|
||||
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
|
||||
# 'searchbox.html']``.
|
||||
#
|
||||
# html_sidebars = {}
|
||||
|
||||
|
||||
# -- Options for HTMLHelp output ---------------------------------------------
|
||||
|
||||
# Output file base name for HTML help builder.
|
||||
htmlhelp_basename = 'cert-managerdoc'
|
||||
|
||||
|
||||
# -- Options for LaTeX output ------------------------------------------------
|
||||
|
||||
latex_elements = {
|
||||
# The paper size ('letterpaper' or 'a4paper').
|
||||
#
|
||||
# 'papersize': 'letterpaper',
|
||||
|
||||
# The font size ('10pt', '11pt' or '12pt').
|
||||
#
|
||||
# 'pointsize': '10pt',
|
||||
|
||||
# Additional stuff for the LaTeX preamble.
|
||||
#
|
||||
# 'preamble': '',
|
||||
|
||||
# Latex figure (float) alignment
|
||||
#
|
||||
# 'figure_align': 'htbp',
|
||||
}
|
||||
|
||||
# Grouping the document tree into LaTeX files. List of tuples
|
||||
# (source start file, target name, title,
|
||||
# author, documentclass [howto, manual, or own class]).
|
||||
latex_documents = [
|
||||
(master_doc, 'cert-manager.tex', u'cert-manager Documentation',
|
||||
u'Jetstack Ltd', 'manual'),
|
||||
]
|
||||
|
||||
|
||||
# -- Options for manual page output ------------------------------------------
|
||||
|
||||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
(master_doc, 'cert-manager', u'cert-manager Documentation',
|
||||
[author], 1)
|
||||
]
|
||||
|
||||
|
||||
# -- Options for Texinfo output ----------------------------------------------
|
||||
|
||||
# Grouping the document tree into Texinfo files. List of tuples
|
||||
# (source start file, target name, title, author,
|
||||
# dir menu entry, description, category)
|
||||
texinfo_documents = [
|
||||
(master_doc, 'cert-manager', u'cert-manager Documentation',
|
||||
author, 'cert-manager', 'One line description of project.',
|
||||
'Miscellaneous'),
|
||||
]
|
||||
|
||||
## Custom options
|
||||
html_context = {
|
||||
'display_github': True,
|
||||
'github_user': 'jetstack',
|
||||
'github_repo': 'cert-manager',
|
||||
'github_version': 'master/docs/'
|
||||
}
|
||||
|
||||
linkcheck_anchors = False
|
||||
|
||||
def setup(app):
|
||||
app.add_stylesheet('css/style.css')
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/sign-off/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/kind/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/dns-providers/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/kind/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/contributing/release-process/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,64 +0,0 @@
|
||||
devel/index.rst https://cert-manager.io/docs/contributing/
|
||||
devel/release-process.rst https://cert-manager.io/docs/contributing/release-process/
|
||||
devel/generate-docs.rst https://cert-manager.io/docs/contributing/
|
||||
devel/end-to-end-tests.rst https://cert-manager.io/docs/contributing/kind/
|
||||
devel/dco-sign-off.rst https://cert-manager.io/docs/contributing/sign-off/
|
||||
devel/dns01-providers.rst https://cert-manager.io/docs/contributing/dns-providers/
|
||||
devel/develop-with-minikube.rst https://cert-manager.io/docs/contributing/kind/
|
||||
index.rst https://cert-manager.io/docs/
|
||||
design/index.rst https://cert-manager.io/docs
|
||||
tasks/index.rst https://cert-manager.io/docs/configuration/
|
||||
tasks/uninstall/kubernetes.rst https://cert-manager.io/docs/tutorials/uninstall/kubernetes/
|
||||
tasks/uninstall/index.rst https://cert-manager.io/docs/tutorials/uninstall/
|
||||
tasks/uninstall/openshift.rst https://cert-manager.io/docs/tutorials/uninstall/openshift/
|
||||
tasks/issuers/index.rst https://cert-manager.io/docs/configuration/
|
||||
tasks/issuers/setup-ca.rst https://cert-manager.io/docs/configuration/ca/
|
||||
tasks/issuers/setup-selfsigned.rst https://cert-manager.io/docs/configuration/selfsigned/
|
||||
tasks/issuers/setup-acme/index.rst https://cert-manager.io/docs/configuration/acme/
|
||||
tasks/issuers/setup-acme/dns01/azuredns.rst https://cert-manager.io/docs/configuration/acme/dns01/azuredns/
|
||||
tasks/issuers/setup-acme/dns01/index.rst https://cert-manager.io/docs/configuration/acme/dns01/
|
||||
tasks/issuers/setup-acme/dns01/cloudflare.rst https://cert-manager.io/docs/configuration/acme/dns01/cloudflare/
|
||||
tasks/issuers/setup-acme/dns01/rfc2136.rst https://cert-manager.io/docs/configuration/acme/dns01/rfc2136/
|
||||
tasks/issuers/setup-acme/dns01/acme-dns.rst https://cert-manager.io/docs/configuration/acme/dns01/acme-dns/
|
||||
tasks/issuers/setup-acme/dns01/route53.rst https://cert-manager.io/docs/configuration/acme/dns01/route53/
|
||||
tasks/issuers/setup-acme/dns01/akamai.rst https://cert-manager.io/docs/configuration/acme/dns01/akamai/
|
||||
tasks/issuers/setup-acme/dns01/digitalocean.rst https://cert-manager.io/docs/configuration/acme/dns01/digitalocean/
|
||||
tasks/issuers/setup-acme/dns01/webhook.rst https://cert-manager.io/docs/configuration/acme/dns01/webhook/
|
||||
tasks/issuers/setup-acme/dns01/google.rst https://cert-manager.io/docs/configuration/acme/dns01/google/
|
||||
tasks/issuers/setup-acme/http01/index.rst https://cert-manager.io/docs/configuration/acme/http01/
|
||||
tasks/issuers/setup-vault.rst https://cert-manager.io/docs/configuration/vault/
|
||||
tasks/issuers/setup-venafi.rst https://cert-manager.io/docs/configuration/venafi/
|
||||
tasks/upgrading/index.rst https://cert-manager.io/docs/installation/upgrading/
|
||||
tasks/upgrading/upgrading-0.4-0.5.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.4-0.5/
|
||||
tasks/upgrading/upgrading-0.8-0.9.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.8-0.9/
|
||||
tasks/upgrading/upgrading-0.5-0.6.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.5-0.6/
|
||||
tasks/upgrading/upgrading-0.6-0.7.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.6-0.7/
|
||||
tasks/upgrading/upgrading-0.2-0.3.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.2-0.3/
|
||||
tasks/upgrading/upgrading-0.3-0.4.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.3-0.4/
|
||||
tasks/upgrading/upgrading-0.9-0.10.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.9-0.10/
|
||||
tasks/upgrading/upgrading-0.7-0.8.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.7-0.8/
|
||||
tasks/upgrading/upgrading-0.10-0.11.rst https://cert-manager.io/docs/installation/upgrading/upgrading-0.10-0.11/
|
||||
tasks/backup-restore-crds.rst https://cert-manager.io/docs/tutorials/backup/
|
||||
tasks/issuing-certificates/index.rst https://cert-manager.io/docs/usage/certificate/
|
||||
tasks/issuing-certificates/ingress-shim.rst https://cert-manager.io/docs/usage/ingress/
|
||||
getting-started/index.rst https://cert-manager.io/docs/installation/
|
||||
getting-started/install/kubernetes.rst https://cert-manager.io/docs/installation/kubernetes/
|
||||
getting-started/install/index.rst https://cert-manager.io/docs/installation/
|
||||
getting-started/install/openshift.rst https://cert-manager.io/docs/installation/openshift/
|
||||
getting-started/webhook.rst https://cert-manager.io/docs/faq/webhook/
|
||||
tutorials/index.rst https://cert-manager.io/docs/tutorials/
|
||||
tutorials/venafi/securing-ingress.rst https://cert-manager.io/docs/tutorials/venafi/venafi/
|
||||
tutorials/acme/index.rst https://cert-manager.io/docs/tutorials/acme/ingress/
|
||||
tutorials/acme/dns-validation.rst https://cert-manager.io/docs/tutorials/acme/dns-validation/
|
||||
tutorials/acme/migrating-from-kube-lego.rst https://cert-manager.io/docs/tutorials/acme/migrating-from-kube-lego/
|
||||
tutorials/acme/http-validation.rst https://cert-manager.io/docs/tutorials/acme/http-validation/
|
||||
tutorials/acme/quick-start/index.rst https://cert-manager.io/docs/tutorials/acme/ingress/
|
||||
reference/index.rst https://cert-manager.io/docs/concepts/
|
||||
reference/challenges.rst https://cert-manager.io/docs/concepts/acme-orders-challenges/
|
||||
reference/clusterissuers.rst https://cert-manager.io/docs/concepts/issuer/
|
||||
reference/cainjector.rst https://cert-manager.io/docs/concepts/ca-injector/
|
||||
reference/issuers.rst https://cert-manager.io/docs/concepts/issuer/
|
||||
reference/certificaterequests.rst https://cert-manager.io/docs/concepts/certificaterequest/
|
||||
reference/certificates.rst https://cert-manager.io/docs/concepts/certificate/
|
||||
reference/orders.rst https://cert-manager.io/docs/concepts/acme-orders-challenges/
|
||||
reference/api-docs/index.rst https://cert-manager.io/docs/reference/api-docs/
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/kubernetes/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/openshift/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/faq/webhook/.
|
||||
This placeholder file will be removed in a later release.
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 64 KiB |
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,36 +0,0 @@
|
||||
@ECHO OFF
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
REM Command file for Sphinx documentation
|
||||
|
||||
if "%SPHINXBUILD%" == "" (
|
||||
set SPHINXBUILD=sphinx-build
|
||||
)
|
||||
set SOURCEDIR=.
|
||||
set BUILDDIR=_build
|
||||
set SPHINXPROJ=cert-manager
|
||||
|
||||
if "%1" == "" goto help
|
||||
|
||||
%SPHINXBUILD% >NUL 2>NUL
|
||||
if errorlevel 9009 (
|
||||
echo.
|
||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||
echo.may add the Sphinx directory to PATH.
|
||||
echo.
|
||||
echo.If you don't have Sphinx installed, grab it from
|
||||
echo.http://sphinx-doc.org/
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
||||
goto end
|
||||
|
||||
:help
|
||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
||||
|
||||
:end
|
||||
popd
|
||||
@@ -1,37 +0,0 @@
|
||||
admin/resource-validation-webhook.rst getting-started/webhook.rst
|
||||
getting-started/1-configuring-helm.rst getting-started/install.rst
|
||||
getting-started/2-install.rst getting-started/install.rst
|
||||
getting-started/install.rst getting-started/install/index.rst
|
||||
getting-started/3-configuring-first-issuer.rst tasks/issuers/index.rst
|
||||
tasks/acme/issuing-certificates.rst tasks/issuers/setup-acme/index.rst
|
||||
tasks/issuers/setup-acme.rst tasks/issuers/setup-acme/index.rst
|
||||
tutorials/acme/index.rst tasks/acme/index.rst
|
||||
tutorials/acme/securing-nginx-ingress-with-letsencrypt.rst tutorials/acme/quick-start/index.rst
|
||||
tutorials/ca/creating-ca-issuer.rst tasks/issuers/setup-ca.rst
|
||||
tutorials/ca/index.rst tasks/issuers/setup-ca.rst
|
||||
tutorials/vault/creating-vault-issuers.rst tasks/issuers/setup-vault.rst
|
||||
tutorials/vault/index.rst tasks/issuers/setup-vault.rst
|
||||
reference/ingress-shim.rst tasks/issuing-certificates/ingress-shim.rst
|
||||
reference/issuers/acme/index.rst tasks/acme/index.rst
|
||||
reference/issuers/acme/dns01/index.rst tasks/acme/configuring-dns01/index.rst
|
||||
reference/issuers/acme/http01.rst tasks/acme/configuring-http01.rst
|
||||
reference/issuers/ca/index.rst tasks/issuers/setup-ca.rst
|
||||
reference/issuers/vault/index.rst tasks/issuers/setup-vault.rst
|
||||
admin/index.rst tasks/index.rst
|
||||
admin/upgrading/index.rst tasks/upgrading/index.rst
|
||||
admin/upgrading/upgrading-0.2-0.3.rst tasks/upgrading/upgrading-0.2-0.3.rst
|
||||
admin/upgrading/upgrading-0.3-0.4.rst tasks/upgrading/upgrading-0.3-0.4.rst
|
||||
admin/upgrading/upgrading-0.4-0.5.rst tasks/upgrading/upgrading-0.4-0.5.rst
|
||||
admin/upgrading/upgrading-0.5-0.6.rst tasks/upgrading/upgrading-0.5-0.6.rst
|
||||
tasks/acme/index.rst tasks/issuers/setup-acme/index.rst
|
||||
tasks/acme/configuring-dns01/index.rst tasks/issuers/setup-acme/dns01/index.rst
|
||||
tasks/acme/configuring-dns01/acme-dns.rst tasks/issuers/setup-acme/dns01/acme-dns.rst
|
||||
tasks/acme/configuring-dns01/akamai.rst tasks/issuers/setup-acme/dns01/akamai.rst
|
||||
tasks/acme/configuring-dns01/azuredns.rst tasks/issuers/setup-acme/dns01/azuredns.rst
|
||||
tasks/acme/configuring-dns01/cloudflare.rst tasks/issuers/setup-acme/dns01/cloudflare.rst
|
||||
tasks/acme/configuring-dns01/digitalocean.rst tasks/issuers/setup-acme/dns01/digitalocean.rst
|
||||
tasks/acme/configuring-dns01/google.rst tasks/issuers/setup-acme/dns01/google.rst
|
||||
tasks/acme/configuring-dns01/rfc2136.rst tasks/issuers/setup-acme/dns01/rfc2136.rst
|
||||
tasks/acme/configuring-dns01/route53.rst tasks/issuers/setup-acme/dns01/route53.rst
|
||||
tasks/acme/configuring-http01.rst tasks/issuers/setup-acme/http01/index.rst
|
||||
tasks/acme/debugging-failing-orders.rst reference/orders.rst
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/reference/api-docs/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/ca-injector/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/certificaterequest/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/certificate/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/acme-orders-challenges/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/issuer/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/issuer/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/concepts/acme-orders-challenges/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,5 +0,0 @@
|
||||
Sphinx==1.8.3
|
||||
sphinx-rtd-theme==0.4.2
|
||||
sphinxcontrib-spelling==4.2.0
|
||||
Pygments==2.3.1
|
||||
git+git://github.com/munnerz/redirects@ec26019#egg=sphinxcontrib-redirects
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/backup/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,5 +0,0 @@
|
||||
approvers:
|
||||
- munnerz
|
||||
reviewers:
|
||||
- munnerz
|
||||
- vdesjardins
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/acme-dns/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/akamai/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/azuredns/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/cloudflare/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/digitalocean/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/google/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/rfc2136/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/route53/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/dns01/webhook/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/http01/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/acme/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/ca/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/selfsigned/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/vault/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/configuration/venafi/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/usage/certificate/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/usage/ingress/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/uninstall/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/uninstall/kubernetes/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/uninstall/openshift/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.10-0.11/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.2-0.3/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.3-0.4/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.4-0.5/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.5-0.6/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.6-0.7/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.7-0.8/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.8-0.9/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/installation/upgrading/upgrading-0.9-0.10/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/acme/dns-validation/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/acme/http-validation/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/acme/ingress/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/acme/migrating-from-kube-lego/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,20 +0,0 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: kuard
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
app: kuard
|
||||
replicas: 1
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: kuard
|
||||
spec:
|
||||
containers:
|
||||
- image: gcr.io/kuar-demo/kuard-amd64:1
|
||||
imagePullPolicy: Always
|
||||
name: kuard
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -1,21 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: kuard
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "nginx"
|
||||
cert-manager.io/issuer: "letsencrypt-prod"
|
||||
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- example.example.com
|
||||
secretName: quickstart-example-tls
|
||||
rules:
|
||||
- host: example.example.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
backend:
|
||||
serviceName: kuard
|
||||
servicePort: 80
|
||||
@@ -1,21 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: kuard
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "nginx"
|
||||
cert-manager.io/issuer: "letsencrypt-staging"
|
||||
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- example.example.com
|
||||
secretName: quickstart-example-tls
|
||||
rules:
|
||||
- host: example.example.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
backend:
|
||||
serviceName: kuard
|
||||
servicePort: 80
|
||||
@@ -1,21 +0,0 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: kuard
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: "nginx"
|
||||
#cert-manager.io/issuer: "letsencrypt-staging"
|
||||
|
||||
spec:
|
||||
tls:
|
||||
- hosts:
|
||||
- example.example.com
|
||||
secretName: quickstart-example-tls
|
||||
rules:
|
||||
- host: example.example.com
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
backend:
|
||||
serviceName: kuard
|
||||
servicePort: 80
|
||||
@@ -1,18 +0,0 @@
|
||||
apiVersion: cert-manager.io/v1alpha2
|
||||
kind: Issuer
|
||||
metadata:
|
||||
name: letsencrypt-prod
|
||||
spec:
|
||||
acme:
|
||||
# The ACME server URL
|
||||
server: https://acme-v02.api.letsencrypt.org/directory
|
||||
# Email address used for ACME registration
|
||||
email: user@example.com
|
||||
# Name of a secret used to store the ACME account private key
|
||||
privateKeySecretRef:
|
||||
name: letsencrypt-prod
|
||||
# Enable the HTTP-01 challenge provider
|
||||
solvers:
|
||||
- http01:
|
||||
ingress:
|
||||
class: nginx
|
||||
@@ -1,11 +0,0 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: kuard
|
||||
spec:
|
||||
ports:
|
||||
- port: 80
|
||||
targetPort: 8080
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: kuard
|
||||
@@ -1,18 +0,0 @@
|
||||
apiVersion: cert-manager.io/v1alpha2
|
||||
kind: Issuer
|
||||
metadata:
|
||||
name: letsencrypt-staging
|
||||
spec:
|
||||
acme:
|
||||
# The ACME server URL
|
||||
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
||||
# Email address used for ACME registration
|
||||
email: user@example.com
|
||||
# Name of a secret used to store the ACME account private key
|
||||
privateKeySecretRef:
|
||||
name: letsencrypt-staging
|
||||
# Enable the HTTP-01 challenge provider
|
||||
solvers:
|
||||
- http01:
|
||||
ingress:
|
||||
class: nginx
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/acme/ingress/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/.
|
||||
This placeholder file will be removed in a later release.
|
||||
@@ -1,6 +0,0 @@
|
||||
==========
|
||||
File moved
|
||||
==========
|
||||
|
||||
This document has moved to https://cert-manager.io/docs/tutorials/venafi/venafi/.
|
||||
This placeholder file will be removed in a later release.
|
||||
Reference in New Issue
Block a user