this post was submitted on 21 Jun 2023
22 points (100.0% liked)

Chat

7475 readers
26 users here now

Relaxed section for discussion and debate that doesn't fit anywhere else. Whether it's advice, how your week is going, a link that's at the back of your mind, or something like that, it can likely go here.


Subcommunities on Beehaw:


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
 

(Just- migrated this instance over to kubernetes.... just testing federation...)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 11 points 1 year ago* (last edited 1 year ago) (1 children)

Oh sweet, here, I will share my lovely ingressroute in return... to replace the nginx stuff everyone else is using.

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  name: lemmy
  namespace: lemmy
spec:
  entryPoints:
    - websecure
  routes:
    - kind: Rule
      match: Host(`lemmyonline.com`) && (Headers(`Accept`, `application/activity+json`) || Headers(`Accept`, `application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"`))
      services:
        - name: lemmy
          port: http
    - kind: Rule
      match: Host(`lemmyonline.com`) && (PathPrefix(`/api`) || PathPrefix(`/pictrs`) || PathPrefix(`/feeds`) || PathPrefix(`/nodeinfo`) || PathPrefix(`/.well-known`))
      services:
        - name: lemmy
          port: http
    - kind: Rule
      match: Host(`lemmyonline.com`) && Method(`POST`)
      services:
        - name: lemmy
          port: http
    - kind: Rule
      match: Host(`lemmyonline.com`)
      services:
        - name: lemmy-ui
          port: http

Thanks!

Edit- could be consolidated down to only two rules, I left it expanded out to be a tad easier to read.

[–] [email protected] 8 points 1 year ago (1 children)

If anyone else has made it this far and are thinking “ah balls, I’m using ingress-nginx”, here’s the ingress annotation for you!

nginx.ingress.kubernetes.io/configuration-snippet: |
            if ($http_accept = "application/activity+json") {
              set $proxy_upstream_name "lemmy-lemmy-8536";
            }
            if ($http_accept = "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"") {
              set $proxy_upstream_name "lemmy-lemmy-8536";
            }
            if ($request_method = POST) {
              set $proxy_upstream_name "lemmy-lemmy-8536";
            }

[–] [email protected] 6 points 1 year ago (1 children)

NORMALLY, this is the part where we would gold each other. Or something.

Sadly- I guess we can't do that.

But, if anyone knows a decent amount on building helm charts- I found a gitlab earlier which was pretty close to where it needs to be-

I forked a copy of it over to github to prepare to make a few changes, such as using PROPER ingress rules.

https://github.com/XtremeOwnageDotCom/Helm

I do believe it's possible to build a helm chart with options for both traefik ingress and nginx ingress too.

[–] [email protected] 4 points 1 year ago (1 children)

The real gold was the friends we made along the way.

[–] [email protected] 4 points 1 year ago (1 children)

And- the mountains we all moved together.

(Oh, and don't forget those rare times where most of reddit bonded together, and accomplished big things. )

[–] [email protected] 4 points 1 year ago (1 children)

You’re in OK?! I just moved from OK to CO last summer. Hope your family and lab gear are doing okay after the storms.

[–] [email protected] 4 points 1 year ago

I am!

Lab survived with basically no downtime. Trees all gone, and my soffit blew away.

3 days running on solar/generator.

Otherwise no real damage, and everyone was ok.