Red Hat Satellite engineering is moving the tracking of its product development work on Satellite to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "Satellite project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs will be migrated starting at the end of May. If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "Satellite project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/SAT-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 1980223 - When using an API call to create a bootdisk Satellite will leave a copy in /tmp/ and does not clean up
Summary: When using an API call to create a bootdisk Satellite will leave a copy in /t...
Keywords:
Status: CLOSED DUPLICATE of bug 1936946
Alias: None
Product: Red Hat Satellite
Classification: Red Hat
Component: Bootdisk Plugin
Version: 6.9.0
Hardware: x86_64
OS: Linux
unspecified
medium
Target Milestone: Unspecified
Assignee: Lukas Zapletal
QA Contact: Roman Plevka
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2021-07-08 06:44 UTC by jtougne
Modified: 2021-12-15 07:31 UTC (History)
4 users (show)

Fixed In Version:
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2021-12-15 07:31:14 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description jtougne 2021-07-08 06:44:27 UTC
Description of problem:

Hi,
It seems an issue somehow similar to this one:
Bug 1837717 - Ansible temporary files are not removed from the /tmp directory. 


Every time a boot disk is created via API call, Satellite will leave it in /tmp/bootdisk-iso-<date>-<host_id>-<random>:

 

drwx------.  3 foreman       foreman         37 Jul  5 13:00 bootdisk-iso-20210705-3671-1p9x4n7

drwx------.  3 foreman       foreman         37 Jul  5 13:07 bootdisk-iso-20210705-3671-h5njqy

drwx------.  3 foreman       foreman         37 Jul  5 18:05 bootdisk-iso-20210705-3671-sxetnh

drwx------.  3 foreman       foreman         37 Jul  6 10:25 bootdisk-iso-20210706-3671-oehtef

drwx------.  3 foreman       foreman         37 Jul  6 10:26 bootdisk-iso-20210706-3677-i84309

 

As a result, creating/downloading a few boot ISOs will fill up /tmp on the Satellite.  



Note: We have checked and there is the use of systemd-tmpfiles-clean.service on RHEL7, which has the default timer, and cleans on a daily basis. Still that's a bit irrelevant to the PR, because it looks like a bug to leave temporary boot disk image in /tmp after it's been created in response to an API call.


Version-Release number of selected component (if applicable):
Red Hat Satellite 6.9.1



How reproducible:

We use this API call:

- name: download bootdisk for VM
        uri:
          url: '{​​​​​​​{​​​​​​​ foreman_server_url }​​​​​​​}​​​​​​​/bootdisk/api/hosts/{​​​​​​​{​​​​​​​ this.json.id }​​​​​​​}​​​​​​​?full=true'
 
    this.json-id is the host_id in Satellite

      - name: get host id from Satellite
    uri:
      url: "{​​​​​​​{​​​​​​​ foreman_server_url }​​​​​​​}​​​​​​​/api/v2/hosts/{​​​​​​​{​​​​​​​ inventory_hostname }​​​​​​​}​​​​​​​/"
      return_content: yes
      url_username: "{​​​​​​​{​​​​​​​ foreman_username }​​​​​​​}​​​​​​​"
      url_password: "{​​​​​​​{​​​​​​​ foreman_password }​​​​​​​}​​​​​​​"
      force_basic_auth: yes
    register: this
 
From the offical API guide:
https://access.redhat.com/documentation/en-us/red_hat_satellite/6.9/html-single/api_guide/index

For example, at the end of "5.1 Working with Hosts":

Downloading a Full Boot Disk Image

This request downloads a full boot disk image for a host by its ID.

Example request:

$ curl --request GET --insecure --user sat_username:sat_password \
https://satellite.example.com/bootdisk/api/hosts/host_ID?full=true \
--output image.iso


Steps to Reproduce:
1. Make an API call to download the boot iso
2. Check /tmp

Actual results:
A copy of the boot iso is left, even after the call is completed, and the boot image downloaded.

Expected results:

We expect that the temporary copy is automatically deleted when no longer needed.

Additional info:

Comment 2 Lukas Zapletal 2021-12-15 07:31:14 UTC
Hello, I can confirm this bug was fixed both for UI and API in 6.10.

*** This bug has been marked as a duplicate of bug 1936946 ***


Note You need to log in before you can comment on or make changes to this bug.