generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from adrianludwin/variants
Introduce manifest variants
- Loading branch information
Showing
18 changed files
with
344 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
This directory is the default configuration of HNC, including internal cert | ||
management ("cc" = "Cert Controller"). It's published as "default_cc.yaml" when | ||
building the manifests ("made manifests" in the root directory) and aliased as | ||
"default.yaml." In versions of HNC prior to v1.0, this was hnc_manager.yaml. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Adds namespace to all resources. | ||
namespace: hnc-system | ||
|
||
# Value of this field is prepended to the | ||
# names of all resources, e.g. a deployment named | ||
# "wordpress" becomes "alices-wordpress". | ||
# Note that it should also match with the prefix (text before '-') of the namespace | ||
# field above. | ||
namePrefix: hnc- | ||
|
||
bases: | ||
- ../../crd | ||
- ../../internalcert | ||
- ../../manager | ||
- ../../rbac | ||
- ../../webhook | ||
|
||
patches: | ||
- patch: |- | ||
- op: add | ||
path: /spec/template/spec/containers/0/args/- | ||
value: --enable-internal-cert-management | ||
- op: add | ||
path: /spec/template/spec/containers/0/args/- | ||
value: --cert-restart-on-secret-refresh | ||
target: | ||
group: apps | ||
version: v1 | ||
kind: Deployment | ||
name: controller-manager |
Oops, something went wrong.