Skip to content
New issue

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

The workaround (for bsc#1229740) should no longer be needed #1748

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions salt/server_containerized/install_mgradm.sls
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ mgradm_config:
{% set runtime = grains.get('container_runtime') | default('podman', true) %}
{% set install_cmd = 'kubernetes' if runtime == 'k3s' else 'podman' %}

# WORKAROUND: Setting the registry here via --registry until https://bugzilla.suse.com/show_bug.cgi?id=1229740 is fixed
mgradm_install:
cmd.run:
- name: mgradm install {{ install_cmd }} --logLevel=debug --config /root/mgradm.yaml --registry {{ grains.get('container_repository') }} {{ grains.get("fqdn") }}
- name: mgradm install {{ install_cmd }} --logLevel=debug --config /root/mgradm.yaml {{ grains.get("fqdn") }}
- env:
- KUBECONFIG: /etc/rancher/k3s/k3s.yaml
{%- if grains.get('container_runtime') | default('podman', true) == 'podman' %}
Expand Down
Loading