We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following #670 we deployed the service to i04's k8s cluster using:
mx-bluesky
build_docker_image.sh
apiVersion: apps/v1 kind: Deployment metadata: name: redis-to-murko labels: app: redis-to-murko spec: replicas: 1 selector: matchLabels: app: redis-to-murko template: metadata: labels: app: redis-to-murko spec: containers: - name: mx-bluesky image: ghcr.io/dominicoram/mx-bluesky:redis_to_murko_2 env: - name: VALKEY_PASSWORD valueFrom: secretKeyRef: name: valkey-secret key: requirepass resources: requests: cpu: 30 memory: 1Gi limits: cpu: 30 memory: 1Gi
then:
kubectl create -f deploy.yaml kubectl apply -f deploy.yaml
This needs to be formalised and made simpler.
mx_bluesky
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Following #670 we deployed the service to i04's k8s cluster using:
mx-bluesky
image that uses this endpointbuild_docker_image.sh
that pushed this image to a personal ghcrthen:
This needs to be formalised and made simpler.
Acceptance Criteria
mx_bluesky
image that can be used for both of these but just different with different endpoints specifiedThe text was updated successfully, but these errors were encountered: