All Projects → script3r → sentry-k8s

script3r / sentry-k8s

Licence: other
Sentry for Kubernetes

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to sentry-k8s

auth0-instrumentation
The goal of this package is to make it easier to collect information about our services through logs, metrics and error catching.
Stars: ✭ 18 (-28%)
Mutual labels:  sentry, instrumentation
sentry-spark
Apache Spark Sentry Integration
Stars: ✭ 14 (-44%)
Mutual labels:  sentry
sentry exporter
Prometheus exporter for Sentry
Stars: ✭ 23 (-8%)
Mutual labels:  sentry
taint-with-frida
just an experiment
Stars: ✭ 17 (-32%)
Mutual labels:  instrumentation
pipeline-lib
Global shared library for Glia pipeline jobs
Stars: ✭ 68 (+172%)
Mutual labels:  kubernetes-deployment
aws-eks-orb
An orb to simplify deployments to Amazon Elastic Container Service for Kubernetes (Amazon EKS)
Stars: ✭ 16 (-36%)
Mutual labels:  kubernetes-deployment
probes-api
Software Activity Metering - Probes Open API
Stars: ✭ 31 (+24%)
Mutual labels:  instrumentation
next-utils
🥩 🍳 A set of Next.js HoC utilities to make your life easier
Stars: ✭ 30 (+20%)
Mutual labels:  sentry
sentry-mobile
Sentry Mobile App
Stars: ✭ 31 (+24%)
Mutual labels:  sentry
go-sentry-kubernetes
Lightweight sentry error/crash reporter for kubernetes
Stars: ✭ 33 (+32%)
Mutual labels:  sentry
sanic-sentry
Sentry integration to sanic web server
Stars: ✭ 31 (+24%)
Mutual labels:  sentry
sentry-docker-compose
How to setup a full Sentry instance with docker-compose.yml
Stars: ✭ 33 (+32%)
Mutual labels:  sentry
instrumentation
Assorted pintools
Stars: ✭ 24 (-4%)
Mutual labels:  instrumentation
splunk-otel-java
Splunk Distribution of OpenTelemetry Java
Stars: ✭ 39 (+56%)
Mutual labels:  instrumentation
dokku-sentry
Deploy your own instance of Sentry onto Dokku!
Stars: ✭ 64 (+156%)
Mutual labels:  sentry
blight
A framework for instrumenting build tools
Stars: ✭ 57 (+128%)
Mutual labels:  instrumentation
kubernetes
Kubernetes Course
Stars: ✭ 19 (-24%)
Mutual labels:  kubernetes-deployment
react-sendbird-messenger
ReactJS (React-router-dom v6 + Antdesign + Firebase + Sendbird + Sentry) codebase containing real world examples (CRUD, auth, advanced patterns, etc).
Stars: ✭ 39 (+56%)
Mutual labels:  sentry
ankh
Another Kubernetes Helper
Stars: ✭ 31 (+24%)
Mutual labels:  kubernetes-deployment
spring-boot-microservice-best-practices
Best practices and integrations available for Spring Boot based Microservice in a single repository.
Stars: ✭ 139 (+456%)
Mutual labels:  kubernetes-deployment

Sentry on Kubernetes

Quickstart

First and foremost, shout out to the people at sentry.io for their project. I recommend forking and helping the community.

Custom Image

If you want to customize specific settings for your installation, build a custom sentry image by modifying the files config.yml, Dockerfile and sentry.conf.py in the build directory.

Then, proceed to upload the custom image to your repository of choice, as following:

REPOSITORY=some-repo/your-sentry make build push

If you don't want to build a custom image, you may use script3r/sentry-k8s.

Prereqs

You'll need to setup a PostgreSQL database with a user and database designated for sentry.

You will also want to run the sentry migrations on it. For more details see https://docs.sentry.io/server/installation/docker/.

Deploy to Kubernetes

Modify the secrets file to contain the actual secrets used in the project. Make sure they're base64 encoded. For example, if your database name and database user are sentry, then your secrets file should contain:

dbName: c2VudHJ5
dbUser: c2VudHJ5

To deploy to Kubernetes, simply type:

kubectl apply -f deploy/k8s/

Notice that this will create a namespace named sentry. Confirm the machines are up by typing:

kubectl get pods -nsentry

You should see images for web, worker and cron.

Enjoy! Your sentry is now exposed as a service sentry-web-service listening on port 80. It is recommended to front this with a TLS/SSL enabled proxy.

TLS Notes

Notice that by default, this setup script enables TLS/SSL by setting the environment variable SENTRY_USE_SSL to 1 in 20web.yml.

If you want to disable TLS (don't do it!), you may set this environment variable to 0.

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].