All Projects → redhat-cop → gitops-catalog

redhat-cop / gitops-catalog

Licence: other
Tools and technologies that are hosted on an OpenShift cluster

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to gitops-catalog

Book k8sInfra
< 컨테이너 인프라 환경 구축을 위한 쿠버네티스/도커 >
Stars: ✭ 176 (+7.98%)
Mutual labels:  gitops, kustomize
htk8s
HTPC services running on Kubernetes
Stars: ✭ 69 (-57.67%)
Mutual labels:  gitops, kustomize
gitops-app-distribution
GitOps workflow for managing app delivery on multiple clusters
Stars: ✭ 22 (-86.5%)
Mutual labels:  gitops, kustomize
declarative-openshift
Working examples of manifests for openshift for use in a declarative management strategy.
Stars: ✭ 17 (-89.57%)
Mutual labels:  gitops, container-cop
flux-kustomize-example
Flux v1: Example of Flux using manifest generation with Kustomize
Stars: ✭ 71 (-56.44%)
Mutual labels:  gitops, kustomize
monokle
🧐 Monokle streamlines the process of creating, analyzing, and deploying Kubernetes configurations by providing a unified visual tool for authoring YAML manifests, validating policies, and managing live clusters.
Stars: ✭ 795 (+387.73%)
Mutual labels:  gitops, kustomize
Flux
Successor: https://github.com/fluxcd/flux2 — The GitOps Kubernetes operator
Stars: ✭ 6,688 (+4003.07%)
Mutual labels:  gitops, kustomize
rules gitops
This repository contains rules for continuous, GitOps driven Kubernetes deployments.
Stars: ✭ 112 (-31.29%)
Mutual labels:  gitops, kustomize
scheduled-pod-autoscaler
Custom Kubernetes controller for GitOps native scheduled scaling
Stars: ✭ 20 (-87.73%)
Mutual labels:  gitops
gitops-helm-workshop
Progressive Delivery for Kubernetes with Flux, Helm, Linkerd and Flagger
Stars: ✭ 59 (-63.8%)
Mutual labels:  gitops
image-scanning-signing-service
Image Signing and Scanning as a Service
Stars: ✭ 36 (-77.91%)
Mutual labels:  container-cop
actions
Set of actions for implementing CI/CD with werf and GitHub Actions
Stars: ✭ 67 (-58.9%)
Mutual labels:  gitops
swarm-sync
GitOps for Docker Swarm
Stars: ✭ 62 (-61.96%)
Mutual labels:  gitops
aws-eks-accelerator-for-terraform
Configure and deploy complete EKS clusters.
Stars: ✭ 1,220 (+648.47%)
Mutual labels:  gitops
k8s-gitops
No description or website provided.
Stars: ✭ 23 (-85.89%)
Mutual labels:  gitops
keepalived-operator
An operator to manage VIPs backed by keepalived
Stars: ✭ 101 (-38.04%)
Mutual labels:  container-cop
gke-demo
Demonstration of complete, fully-featured CI/CD and cloud automation for microservices, done with GCP/GKE
Stars: ✭ 47 (-71.17%)
Mutual labels:  kustomize
kube-applier
kube-applier enables automated deployment and declarative configuration for your Kubernetes cluster.
Stars: ✭ 27 (-83.44%)
Mutual labels:  gitops
charts
Helm charts for creating reproducible and maintainable deployments of Polyaxon with Kubernetes.
Stars: ✭ 32 (-80.37%)
Mutual labels:  gitops
cert-operator
An OpenShift controller using the Operator SDK for managing TLS certficate lifecycle
Stars: ✭ 27 (-83.44%)
Mutual labels:  container-cop

GitOps Catalog

Build Status

The GitOps Catalog includes kustomize bases and overlays for a number of OpenShift operators and applications.

This catalog is not officially supported by Red Hat and customers are discouraged from referencing this repo directly as a remote repo in kustomize as future changes may break these references. Instead customers are encouraged to take individual items of interest into their own curated catalog and maintain it as their own.

Catalog Refactoring for Consistency

Now that this catalog is part of the Red Hat Community of Practice, there will be some structural refactoring to improve consistency. If you have been using this catalog since before it was part of the redhat-cop organization, or at least before any refactoring has begun, be sure to include a ref in your oc/kubectl commands or kustomization.yaml files to avoid any negative side effects. The last tag before the repository was migrated is v0.3. Simply include ?ref=v0.3 at the end of the repository reference. For example:

oc apply -k https://github.com/redhat-cop/gitops-catalog/jenkins2/overlays/default?ref=v0.3

Or

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

resources:
- github.com/redhat-cop/gitops-catalog/jenkins2/base/?ref=v0.3

Usage

Each catalog item has (or will have) its own README in its directory root with instructions. Generally speaking, you can usually just apply a "base" or "overlay" directly in your cluster by cloning this repostitory and using the -k flag (for Kustomize) built into oc and kubectl:

git clone https://github.com/redhat-cop/gitops-catalog
oc apply -k catalog/jenkins2/overlays/default

Or to skip the cloning step:

oc apply -k https://github.com/redhat-cop/gitops-catalog/jenkins2/overlays/default

Kustomize

You can reference bases for the various tools here in your own kustomize overlay without explicitly cloning this repo, for example:

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

namespace: product-catalog-cicd

resources:
- github.com/redhat-cop/gitops-catalog/jenkins2/bases/?ref=main

This enables you to patch these resources for your specific environments. Note that none of these bases specify a namespace, in your kustomization overlay you can include the specific namespace you want to install the tool into.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].