-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(delivery): Move delivery manifests back to this repository
This change adjusts this repository to the new deployment methodology used in the "arikkfir/delivery" repository by hosting the deployment manifests here, and using FluxCD substitutions for dynamic values.
- Loading branch information
Showing
22 changed files
with
709 additions
and
118 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
apiVersion: dns.cnrm.cloud.google.com/v1beta1 | ||
kind: DNSRecordSet | ||
metadata: | ||
name: wildcard-cname-record | ||
spec: | ||
name: "*.${deploy_environment}.greenstar.kfirs.com." | ||
type: CNAME | ||
ttl: 300 | ||
managedZoneRef: | ||
name: kfirs-com | ||
namespace: dns | ||
# noinspection KubernetesDeprecatedKeys | ||
rrdatas: | ||
- traefik.kfirs.com. | ||
--- | ||
apiVersion: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: wildcard | ||
spec: | ||
dnsNames: | ||
- "*.${deploy_environment}.greenstar.kfirs.com" | ||
issuerRef: | ||
kind: ClusterIssuer | ||
name: google-clouddns | ||
secretName: greenstar-wildcard-tls |
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,6 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
commonLabels: | ||
app.kubernetes.io/name: ingress | ||
resources: | ||
- dns.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,29 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
commonLabels: | ||
app.kubernetes.io/part-of: greenstar | ||
namePrefix: greenstar- | ||
resources: | ||
- secrets | ||
- ingress | ||
- redis | ||
- neo4j | ||
configurations: | ||
- kustomizeconfig.yaml | ||
patches: | ||
- patch: |- | ||
- op: add | ||
path: /spec/template/spec/nodeSelector | ||
value: | ||
node.kfirs.com/role: work | ||
- op: add | ||
path: /spec/template/spec/tolerations | ||
value: | ||
- effect: NoExecute | ||
key: node.kfirs.com/role | ||
operator: Equal | ||
value: work | ||
target: | ||
group: apps | ||
version: v1 | ||
kind: Deployment |
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 @@ | ||
nameReference: [ ] |
Oops, something went wrong.