1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00

remove gh-pages

This commit is contained in:
Yuvraj 2020-05-27 11:09:45 -07:00
parent aad6504fc5
commit 402477e4aa
7 changed files with 0 additions and 119 deletions

View file

@ -1,24 +0,0 @@
# Kyverno Web Site
This folder contains the https://kyverno.io website.
The site is published in the gh_pages branch. To build the site:
1. Clone the Hugo template:
````bash
cd themes
git clone https://github.com/nirmata/github-project-landing-page
````
2. Make changes as needed. Then publish using:
````bash
publish-to-gh-pages.sh
````
To build and test locally, install and run hugo:
````bash
hugo server
````

View file

@ -1,6 +0,0 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

View file

@ -1,33 +0,0 @@
baseURL = "https://kyverno.io/"
themesDir = "themes"
theme = "github-project-landing-page"
title = "Kyverno"
canonifyURLs=true
relativeURLs=true
[params]
description = "Kubernetes Native Policy Management"
long_description = '''
Manage policies as Kubernetes resources. Validate, mutate, and generate configurations.
Select resources based on labels and wildcards. View policy enforcement as events. Detect
policy violations for existing resources.'''
author_name = "Nirmata"
author_url = "https://nirmata.com"
project_url = "https://github.com/nirmata/kyverno/"
project_documentation = "https://github.com/nirmata/kyverno/blob/master/README.md"
github_project_name = "kyverno"
github_user_name = "nirmata"
logo = "img/kyverno.png"
first_color="#f8f8f8"
first_border_color="#e7e7e7"
first_text_color="#333"
second_color="white"
second_text_color="#333"
header_color="#f8f8f8"
header_text_color="rgb(51, 51, 51)"
header_link_color="#777"
header_link_hover_color="rgb(51, 51, 51)"

View file

@ -1,24 +0,0 @@
# Features
* Policy definitions as Kubernetes resources
* Validate, mutate, or generate Kubernetes resources
* Match resources using label selectors and wildcards
* Mutate using overlays (like Kustomize) or JSON Patch
* Validate using overlays and powerful conditionals
* Generate default resources during namespace creation
* Reporting of policy violations for existing resources
* Kubernetes events for resource changes and policy enforcement
* Test policy changes using kubectl
<p style="margin-top: 30px; margin-left:15px; font-size: 110%;">
Ready for more? <a href="https://github.com/nirmata/kyverno/blob/master/README.md">Read the docs</a>, <a href="https://github.com/nirmata/kyverno/blob/master/documentation/writing-policies.md">write a policy</a>, or <a href="https://github.com/nirmata/kyverno/blob/master/documentation/installation.md">try Kyverno in your cluster</a>!
</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

View file

@ -1,31 +0,0 @@
#!/bin/sh
DIR=$(dirname "$0")
if [[ $(git status -s) ]]
then
echo "The working directory is dirty. Please commit any pending changes."
exit 1;
fi
echo "Deleting old publication"
rm -rf public
mkdir public
git worktree prune
rm -rf .git/worktrees/public/
echo "Checking out gh-pages branch into public"
git worktree add -B gh-pages public origin/gh-pages
echo "Removing existing files"
rm -rf public/*
echo "Generating site"
hugo
echo "Updating gh-pages branch"
cd public && git add --all && git commit -m "Publishing to gh-pages (publish.sh)"
cd ..
echo "done!"

@ -1 +0,0 @@
Subproject commit 7507b5c2da7823b75185c3a2bd18db6357937143