Giter Club home page Giter Club logo

Comments (7)

yamila-moreno avatar yamila-moreno commented on July 29, 2024 4

Hi there!

Do you know that we have Taiga Community for questions? Please, check there; maybe another user has already ask something similar. If not, create your own. There are people there willing to help, members of the Taiga team members and other users.

To simplify  the process, we will systematically close all issues that are general support questions and redirect people to Taiga Community.

Taiga Team

from taiga-docker.

Felixkruemel avatar Felixkruemel commented on July 29, 2024 2

Hi! Sorry, but we haven't tested it on an ARM architecture.
What kind of problems do you have? Maybe we can help you.
Greetings!

The Docker images are just not available for aarch64/ARM64. Simple as that.
You need to build the images Multi-Arch to comply with dockers Multi-Arch approach: https://docs.docker.com/desktop/multi-arch/

That there's no ARM support is an rising problem as powerful and cheap servers on ARM get more and more popular, especially since certain providers offer them for free.

As @WiZeYAR mentioned above the comment explained well what needs to be changed.

from taiga-docker.

tdelatorre avatar tdelatorre commented on July 29, 2024

Hi! Sorry, but we haven't tested it on an ARM architecture.
What kind of problems do you have? Maybe we can help you.
Greetings!

from taiga-docker.

WiZeYAR avatar WiZeYAR commented on July 29, 2024

There was a person, proposing how to build the arm64 image here: #70 (comment)

from taiga-docker.

miku86 avatar miku86 commented on July 29, 2024

Would be awesome to see this, more and more people use ARM infrastructure.

from taiga-docker.

mosgjig avatar mosgjig commented on July 29, 2024

For those interested in deploying arm images via helm, from taigaio/taiga-docker#70 (comment), to raspberry pi k8s cluster running on ubuntu with microk8s:

Pre-requisits:

Taiga Helm Resource:

values.yaml

Use the following values.yaml, find and replace below values:

  • <my.domain.com>
  • microk8s-hostpath - this may be different for your environment.
  • letsencrypt-staging - this may be different for you environment.
persistence:
  media:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'
  static:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'

env:
  taigaURL: "https://<my.domain.com>"
  taigaWebsocketsURL: "wss://<my.domain.com>" ## wss:// if https
  taigaSitesDomain: "<my.domain.com>" 
  taigaSitesScheme: "https"
  postgresHost: "taiga-db"

taigaAsyncRabbitmq:
  persistence:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'
  service:
    type: ClusterIP
    port: 5672

taigaAsync:
  service:
    type: ClusterIP
    port: 8000
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-back
    tag: latest

taigaBack:
  service:
    type: ClusterIP
    port: 8000
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-back
    tag: latest

taigaDB:
  image:
    repository: postgres
    tag: "12.3"
  persistence:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'
  service:
    type: ClusterIP
    port: 5432

taigaEventsRabbitmq:
  persistence:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'
  service:
    type: ClusterIP
    port: 5672

taigaEvents:
  service:
    type: ClusterIP
    port: 8888
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-events
    tag: latest

taigaFront:
  service:
    type: ClusterIP
    port: 80
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-front
    tag: latest

taigaGateway:
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-gateway
    tag: latest
  persistence:
    enabled: true
    size: '100Mi'
    storageClassName: microk8s-hostpath
    accessMode: 'ReadWriteOnce'
  service:
    type: ClusterIP
    port: 80
  ingress:
    enabled: true
    annotations:
      kubernetes.io/ingress.class: "public"
      cert-manager.io/cluster-issuer: "letsencrypt-staging"
    hosts:
      - host: <my.domain.com>
        paths:
          -  "/"
    tls:
      - secretName: taiga-tls
        hosts:
          - <my.domain.com>

taigaProtected:
  image:
    repository: public.ecr.aws/r2d7r3i9/taiga-protected
    tag: latest
  service:
    type: ClusterIP
    port: 8003

taigaAsyncRabbitmq:
  persistence:
    enabled: true
    storageClassName: microk8s-hostpath

Conclusion

when all is said and done you have a standing app but can't login. Supposedly default l/p is admin/123123 but that doesn't work. Looking at the docs, one will have to run a shell script via docker container to create the user. If somebody can provide an easier answer, lmk. For now ditching this and attempting OpenProject.

from taiga-docker.

x390 avatar x390 commented on July 29, 2024

Any plans for official arm images?

from taiga-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.