Compare commits

..

17 Commits

Author SHA1 Message Date
e570a2e3c8 Add endpoint for chunked transfer
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m22s
Gitea Actions Demo / test (push) Successful in 1m20s
Gitea Actions Demo / release-image (push) Successful in 1m14s
2024-08-20 20:02:21 -05:00
d52786aa44 Rotate secret again
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m26s
Gitea Actions Demo / test (push) Successful in 1m19s
Gitea Actions Demo / release-image (push) Successful in 1m9s
2024-08-19 02:04:50 -05:00
467a8a4b15 Finish Reloader setup
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Successful in 1m19s
Gitea Actions Demo / release-image (push) Successful in 1m8s
2024-08-18 01:53:32 -05:00
cbef23df77 Rename ConfigMap
Some checks failed
Gitea Actions Demo / release-image (push) Blocked by required conditions
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Has been cancelled
2024-08-18 01:49:06 -05:00
af77b895e0 Add a ConfigMap
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Successful in 1m21s
Gitea Actions Demo / release-image (push) Successful in 1m3s
2024-08-18 01:38:47 -05:00
2417429953 Rotate session secret again
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Successful in 1m17s
Gitea Actions Demo / release-image (push) Successful in 1m2s
2024-08-18 01:20:41 -05:00
4e567a0041 Enable reloader
Some checks failed
Gitea Actions Demo / test (push) Blocked by required conditions
Gitea Actions Demo / release-image (push) Blocked by required conditions
Gitea Actions Demo / lint (push) Has been cancelled
2024-08-18 01:18:49 -05:00
9ef84c509d Rotate session secret
Some checks are pending
Gitea Actions Demo / release-image (push) Blocked by required conditions
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Successful in 1m20s
2024-08-18 01:15:44 -05:00
83a6152472 Disable sessions for endpoints that do not require them
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m21s
Gitea Actions Demo / test (push) Successful in 1m20s
Gitea Actions Demo / release-image (push) Successful in 1m4s
2024-08-17 14:03:04 -05:00
ac5f98d865 Remove Deployment in favor of a Rollout
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m31s
Gitea Actions Demo / test (push) Successful in 1m20s
Gitea Actions Demo / release-image (push) Successful in 1m3s
2024-08-11 18:02:48 -05:00
87156eda3d Add /status/:code 2024-08-11 17:52:44 -05:00
22b9593ab1 Add Argo Rollout 2024-08-11 17:52:44 -05:00
b6f05b475f Add /_cat/cookies
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m22s
Gitea Actions Demo / test (push) Successful in 1m18s
Gitea Actions Demo / release-image (push) Successful in 1m11s
2024-08-11 11:18:41 -05:00
b174107b8a Rotate k8s SESSION_SECRET
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m23s
Gitea Actions Demo / test (push) Successful in 1m21s
Gitea Actions Demo / release-image (push) Successful in 1m2s
2024-08-07 12:20:38 -05:00
de408fc00d Fix secret reference
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m19s
Gitea Actions Demo / test (push) Successful in 1m22s
Gitea Actions Demo / release-image (push) Successful in 59s
2024-07-30 14:43:35 -05:00
f8868939e1 Use reloader
All checks were successful
Gitea Actions Demo / lint (push) Successful in 1m23s
Gitea Actions Demo / test (push) Successful in 1m18s
Gitea Actions Demo / release-image (push) Successful in 1m1s
2024-07-30 14:30:20 -05:00
730817d059 Add sealed secret 2024-07-30 14:30:00 -05:00
5 changed files with 78 additions and 8 deletions

25
app.rb
View File

@ -2,6 +2,7 @@ require "bundler/setup"
require "sinatra"
require "sinatra/json"
require "sinatra/cookies"
require "sinatra/multi_route"
require "time"
require "fileutils"
require "json"
@ -205,6 +206,7 @@ before do
# content_type 'text/plain'
sleep(1) while Sleep.instance.asleep? && request.path_info != "/livez/sleep"
content_type :text if request.path_info.start_with? "/_cat"
request.session_options[:skip] = !request.path_info.start_with?("/session")
end
get "/" do
@ -347,3 +349,26 @@ get "/_cat/env" do
end
end
end
get "/_cat/cookies" do
stream do |out|
cookies.each do |k, v|
out << "#{k}=#{v}\n"
end
end
end
route :delete, :get, :patch, :post, :put, "/status/:code" do
# hello
code = Integer(params[:code])
status code if code.between? 100, 599
end
get "/chunked/:delay" do
delay = Float(params[:delay])
stream do |out|
out << "Hello, world!\n"
sleep delay
out << "Hello, world!\n"
end
end

View File

@ -0,0 +1,11 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: toy-configmap
namespace: toy
annotations:
reloader.stakater.com/match: "true"
data:
CAT: luna

View File

@ -3,6 +3,8 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: toy
resources:
- deployment.yaml
- secret.yaml
- configmap.yaml
- rollout.yaml
- services.yaml
- ingress.yaml

View File

@ -1,13 +1,24 @@
---
kind: Deployment
apiVersion: apps/v1
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
name: toy
labels:
app: toy
annotations:
reloader.stakater.com/auto: "true"
spec:
replicas: 3
replicas: 5
strategy:
canary:
steps:
- setWeight: 20
- pause: {}
- setWeight: 40
- pause: {duration: 10}
- setWeight: 60
- pause: {duration: 10}
- setWeight: 80
- pause: {duration: 10}
revisionHistoryLimit: 2
selector:
matchLabels:
app: toy
@ -19,6 +30,7 @@ spec:
containers:
- name: toy
image: git.kill0.net/ryanc/toy:latest
imagePullPolicy: Always
ports:
- name: web
containerPort: 4567
@ -27,8 +39,11 @@ spec:
valueFrom:
secretKeyRef:
name: toy-session-secret
key: toy-session-secret
key: session_secret
optional: true
envFrom:
- configMapRef:
name: toy-configmap
livenessProbe:
httpGet:
path: /livez

17
kustomize/app/secret.yaml Normal file
View File

@ -0,0 +1,17 @@
---
apiVersion: bitnami.com/v1alpha1
kind: SealedSecret
metadata:
creationTimestamp: null
name: toy-session-secret
namespace: toy
annotations:
reloader.stakater.com/match: "true"
spec:
encryptedData:
session_secret: AgBTxKU1zmMUNAUi9zR8bBby/u7voCe9axQgtNP9naE4Jhb8cGORCOuhT7EwUNZUc0gYf8XE56EeZQx9fl/m7IPr34dkC7IK22ZAG391PUBsj7gKYdBRL+s7hqH2s02eY3EIw45lWWjjdEmEizenFmqKpD0zD/UZFps1oRUnJ8Fry/wmfpNsapyb3J5fMC1p/SlJAFAEbGe+BKhjyIxAgHbizL510X1fGvS7LGgUQR4ePnX8Xmi1ubM8PeQOX0tRZwdw+AT8hm1eUd9KSw1PwlcF/xzrGHb7Pw5zTwoa9p1H9+nv80SyNdKxgWvwFj0+GThbOc3wiF1ENVyZmxZo/Y5SyHs7QpATvy23f253aC67nmTz5FU2KkmfqO8hGhdsrxIdQo/iMZq/SVABX4FgbrbKi70dRMe4SWRD1albqp4h/e2asBMPyzS+L27m6zD8BMZ+J9sQGyjAzzkADS5xG9UAF78fXZXJmPbNxCq92FFINHK98np3ucP+VdDBMyfOeKH8ieBR/qfakWRHnVQVsR+hnwdRS0CMixw7wB6RQw/JCAXKiwKVvvmVVXZzpNucuTesFClYNTxRKhPBHtiyXEPDaHpi7PghQB81wDcY0T9u6HYjGl4udA0friiN1CmUGO8e5FtkQ4eiMe+SIB3oCXNGWErMpMkHIRdt4rdP08rZ2m4GG3MKtQlBKM4MHfcKvke4tkLmeAItMTl2qNd283xaeabO0lG9yh0fuYuaNbqvYNt8TCprLWVb+ynrqbHn4E0SeoRT+vjGSR9K9N+iLkv6GCjDhiw+TrQ4QArYHI3CS2SeY4oIOe2HUP3jyjSh4r6jH1+n3elJG/eb+GQ9nlC4xKqXE+wwx+7s850nMifcDuk=
template:
metadata:
creationTimestamp: null
name: toy-session-secret
namespace: toy