Compare commits

..

4 Commits

Author SHA1 Message Date
Xe Iaso
842b530670 fix(blog/TI-20250709-0001): amend grammar
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-07-09 14:51:26 +00:00
Xe Iaso
b9f9a0b157 fix(blog/TI-20250709-0001): add TecharoHQ/anubis#794
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-07-09 14:44:28 +00:00
Xe Iaso
e2d4aa42d7 chore: spelling
check-spelling run (pull_request) for Xe/TI-20250709-0001

Signed-off-by: check-spelling-bot <check-spelling-bot@users.noreply.github.com>
on-behalf-of: @check-spelling <check-spelling-bot@check-spelling.dev>
2025-07-09 14:43:51 +00:00
Xe Iaso
afe6adf8ac feat(blog): incident report for TI-20250709-0001
Signed-off-by: Xe Iaso <me@xeiaso.net>
2025-07-09 14:40:50 +00:00
5 changed files with 17 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
acs
aeacus
Aibrew
alrest
amazonbot
@@ -174,13 +175,13 @@ lgbt
licend
licstart
lightpanda
limsa
LIMSA
Linting
linuxbrew
LLU
loadbalancer
lol
lominsa
LOMINSA
maintainership
malware
mcr

View File

@@ -49,14 +49,14 @@ jobs:
platforms: linux/amd64
push: true
- name: Apply k8s manifests to limsa lominsa
- name: Apply k8s manifests to aeacus
uses: actions-hub/kubectl@d50394b7d704525f93faefce1e65a6329ff67271 # v1.33.2
env:
KUBE_CONFIG: ${{ secrets.LIMSA_LOMINSA_KUBECONFIG }}
with:
args: apply -k docs/manifest
- name: Apply k8s manifests to limsa lominsa
- name: Apply k8s manifests to aeacus
uses: actions-hub/kubectl@d50394b7d704525f93faefce1e65a6329ff67271 # v1.33.2
env:
KUBE_CONFIG: ${{ secrets.LIMSA_LOMINSA_KUBECONFIG }}

View File

@@ -5,6 +5,6 @@ COPY . .
RUN npm ci && npm run build
FROM ghcr.io/xe/nginx-micro
COPY --from=build /app/build /www
FROM docker.io/library/nginx:alpine
COPY --from=build /app/build /usr/share/nginx/html
LABEL org.opencontainers.image.source="https://github.com/TecharoHQ/anubis"

View File

@@ -42,7 +42,7 @@ Anubis now supports localized responses. Locales can be added in [lib/localizati
- [Brazilian Portugese](https://github.com/TecharoHQ/anubis/pull/726)
- [Chinese (Traditional)](https://github.com/TecharoHQ/anubis/pull/759)
- English
- [Estonian](https://github.com/TecharoHQ/anubis/pull/783)
- [Estonian](https://github.com/TecharoHQ/anubis/pull/783)
- [French](https://github.com/TecharoHQ/anubis/pull/716)
- [German](https://github.com/TecharoHQ/anubis/pull/741)
- [Spanish](https://github.com/TecharoHQ/anubis/pull/716)
@@ -99,7 +99,6 @@ There are a bunch of other assorted features and fixes too:
- Make the [Open Graph](./admin/configuration/open-graph.mdx) subsystem and DNSBL subsystem use [storage backends](./admin/policies.mdx#storage-backends) instead of storing everything in memory by default.
- Allow [Common Crawl](https://commoncrawl.org/) by default so scrapers have less incentive to scrape
- The [bbolt storage backend](./admin/policies.mdx#bbolt) now runs its cleanup every hour instead of every five minutes.
- Don't block Anubis starting up if [Thoth](./admin/thoth.mdx) health checks fail.
### Potentially breaking changes

View File

@@ -60,6 +60,15 @@ func New(ctx context.Context, thothURL, apiToken string, plaintext bool) (*Clien
hc := healthv1.NewHealthClient(conn)
resp, err := hc.Check(ctx, &healthv1.HealthCheckRequest{})
if err != nil {
return nil, fmt.Errorf("can't verify thoth health at %s: %w", thothURL, err)
}
if resp.Status != healthv1.HealthCheckResponse_SERVING {
return nil, fmt.Errorf("thoth is not healthy, wanted %s but got %s", healthv1.HealthCheckResponse_SERVING, resp.Status)
}
return &Client{
conn: conn,
health: hc,