You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/01/17 22:30:10 UTC

[GitHub] [airflow] NadimYounes opened a new issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

NadimYounes opened a new issue #20911:
URL: https://github.com/apache/airflow/issues/20911


   ### Apache Airflow version
   
   2.0.2
   
   ### What happened
   
   When attempting to rebuild an apache airflow image, we are getting failures during our builds when trying to run `apt-get update`. 
   
   The error we see:
   
   ```
   #5 3.879 W: GPG error: http://repo.mysql.com/apt/debian buster InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
   #5 3.879 E: The repository 'http://repo.mysql.com/apt/debian buster InRelease' is not signed.
   ```
   
   ### What you expected to happen
   
   This behaviour shouldn't occur but it looks like some changes were published to the `mysql` apt repository this morning which is when we started experiencing issues.
   
   <img width="552" alt="Screen Shot 2022-01-17 at 5 17 49 PM" src="https://user-images.githubusercontent.com/40478775/149842772-78390787-5556-409e-9ab7-67f1260ec48a.png">
   
   I think we just need to update the [airflow script](https://github.com/apache/airflow/blob/2.0.2/scripts/docker/install_mysql.sh ) which installs mysql and has a key already hardcoded [here](https://github.com/apache/airflow/blob/10023fdd65fa78033e7125d3d8103b63c127056e/scripts/docker/install_mysql.sh#L42). 
    
   
   ### How to reproduce
   
   Create a `Dockerfile`. Add the following lines to the Dockerfile:
   
   ```
   FROM apache/airflow:2.0.2-python3.7 as airflow_main
   USER root
   RUN apt-get update
   ```
   In a shell
   run command  -> `docker build .` 
   
   
   ### Operating System
   
   Debian 10
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Docker-Compose
   
   ### Deployment details
   
   _No response_
   
   ### Anything else
   
   We were able to fix this by running the following command before the `apt-get update`
   
   ```
   FROM apache/airflow:2.0.2-python3.7 as airflow_main
   USER root
   RUN sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29
   RUN apt-get update
   ```
   
   
   ### Are you willing to submit PR?
   
   - [X] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] NadimYounes commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
NadimYounes commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015000693


   @potiuk Sure. I will check in a couple hours and let you know. Thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030701826


   If you have not seen how you solve your issue, looking at the changes above, I suggest you reach-out to mysql support. the changes implemented to fix it are straightforward to look at, but appentl - since you cannot figure it out- you should reach out to mysql team that caused the problem, not airflow, who implemented the fix and hoped you can spend a few minutes of your time to apply the same fixes.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030701923


   Paid support from Oracle to MySQL changes is always an option


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] shaharke-af commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
shaharke-af commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1020914515


   hello
   this is hitting us with 2.1.4
   is there a workaround ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] hros commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
hros commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030701294


   > I propose you start answering the questions:
   > 
   > * Have you read the messages above?
   > * Have you puled the latest airflow image?
   > * if you use ubuntu/focal you are surely not using airflow image which use ubuntu?
   > * have you read the answers above and understood what they mean?
   > 
   > I suggest you start with those questions.
   
   thanks for your reply
   * I have read the above messages
   * I am not using the airflow image
   * I am using Ubuntu 20.04, and followed the instructions in this [link](https://www.digitalocean.com/community/tutorials/how-to-install-mysql-on-ubuntu-20-04) to add a mysql repository
   * I have read the previous answers, which suggest to update the public key, bu could not find the proper way to do that in my situation
   
   thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015227576


   Thanks @NadimYounes ~ I will run some extra checks to see if the images are all good.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] NadimYounes commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
NadimYounes commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1014938011


   @potiuk Will this fix be applied to all Airflow `2*` or will it only go into the latest? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1021249750


   > hello this is hitting us with 2.1.4 is there a workaround ?
   
   You need to pull new image


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1021249750


   > hello this is hitting us with 2.1.4 is there a workaround ?
   
   You need to pull new image


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015325947


   Did you pull it @a-lukashenka? You need to make sure you run `docker build --pull` or pull the image before if you want to make sure the new version is used if the image has been pulled before.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1016681050


   Yep. it wil be in all versions. But we corrected it only in Airflow 2 as 1.10 is end-of-life and you are on your own to apply correction (that's the consequence of being end-of-life).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] a-lukashenka commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
a-lukashenka commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015319111


   @potiuk Hello, 2.1.3 doesn't work


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] razi-ahmad edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
razi-ahmad edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1025016405


   I'm getting the same error with the following command
   FROM mysql:5.7.34
   
   RUN apt-get update -y \
       && apt-get install -y git


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030700622


   I propose you start answering the questions:
   
   * Have you read the messages above?
   * Have you puled the latest airflow image?
   * if you use ubuntu/focal you are surely not using airflow image which use ubuntu?
   * have you read the answers above and understood what they mean?
   
   I suggest you start with those questions.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] timcroydon edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
timcroydon edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1016663357


   For info, I've just run into this same issue using 1.10.14 (which we're stuck on for uninteresting reasons!)
   
   Manually applying the [fix mentioned in the PR](https://github.com/apache/airflow/pull/20912#issuecomment-1014955521) here fixes the issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] NadimYounes commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
NadimYounes commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015044192


   @potiuk confirming that this now works on `2.0.2`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1021249750


   > hello this is hitting us with 2.1.4 is there a workaround ?
   
   You need to pull new image - the images were refreshed including the new key.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1025088028


   I think you need to direct it to MySQL team :). Likely they refreshed some of their images (maybe latest from each minor version) with the new key as well. But that's nothing we can help here.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] hros commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
hros commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030698198


   > Yep. OUR CI builds started to fail this morning too. Switching to the new mysql public key now.
   
   I have the same error:
   ```
   Err:8 http://repo.mysql.com/apt/ubuntu focal InRelease                         
     The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 467B942D3A79BD29
   ```
   
   How do you update the public key for the mysql repository?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030702250


   https://github.com/apache/airflow/pull/20912/files - this is a fix for us. Somethng like that might work for you. If you can't get it work  reach out to paid support of MySQL.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030701826


   If you have not seen how you solve your issue, looking at the changes above, I suggest you reach-out to mysql support. the changes implemented to fix it are straightforward to look at, but appently - since you cannot figure it out- you should reach out to mysql team that caused the problem, not airflow, who implemented the fix and hoped you can spend a few minutes of your time to apply the same fixes.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] timcroydon commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
timcroydon commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1016663357


   For info, I've just run into this same issue using 1.10.14 (which we're stuck on for uninteresting reasons!)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1014934691


   Yep. OUR CI builds started to fail this morning too. Switching to the new mysql public key now.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] mik-laj closed issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
mik-laj closed issue #20911:
URL: https://github.com/apache/airflow/issues/20911


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1016681050


   Yep. it wil be in all versions. But we corrected it only in Airflow 2 as 1.10 is end-of-life and you are on your own to apply corrections (that's the consequence of being end-of-life).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1030700622


   I propose you start answering with the questions 
   
   * Have you read the messages above?
   * Have you puled the latest airflow image?
   * if you use ubuntu/focal you are surely not using airflow image which use ubuntu?
   * have you read the answers above and understood what they mean?
   
   I suggest you start with those questions.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1015328408


   This docker file:
   
   ```
   [jarek@Hyperion:~/test] 8s % cat Dockerfile-mysql 
   FROM apache/airflow:2.1.3
   USER root
   ```
   
   Works nicely for mie:
   
   ```
   [jarek@Hyperion:~/test] 30s % docker build --pull -f Dockerfile-mysql .
   Sending build context to Docker daemon  3.705MB
   Step 1/3 : FROM apache/airflow:2.1.3
    ---> 98186fae5632
   Step 2/3 : USER root
    ---> Running in b48fefdd97f9
   Removing intermediate container b48fefdd97f9
    ---> 54eb63a8c726
   Step 3/3 : RUN apt-get update
    ---> Running in 4e0d3a627c2a
   Get:1 http://repo.mysql.com/apt/debian buster InRelease [22.1 kB]
   Get:2 http://deb.debian.org/debian buster InRelease [122 kB]
   Get:3 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
   Get:4 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
   Get:5 https://packages.microsoft.com/debian/10/prod buster InRelease [29.8 kB]
   Get:6 http://repo.mysql.com/apt/debian buster/mysql-8.0 amd64 Packages [8421 B]
   Get:7 http://security.debian.org/debian-security buster/updates/main amd64 Packages [311 kB]
   Get:8 http://deb.debian.org/debian buster/main amd64 Packages [7906 kB]
   Get:9 https://packages.microsoft.com/debian/10/prod buster/main all Packages [3847 B]
   Get:10 https://packages.microsoft.com/debian/10/prod buster/main amd64 Packages [140 kB]
   Get:11 http://deb.debian.org/debian buster-updates/main amd64 Packages [15.5 kB]
   Fetched 8676 kB in 3s (2986 kB/s)
   Reading package lists...
   Removing intermediate container 4e0d3a627c2a
    ---> 612e6219d915
   Successfully built 612e6219d915
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1014940304


   I am **just** refreshing all the images down to 2.1.0. We have a "reproducible" Docker prod imge preparation system that allows us to do this.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1016681050


   Yep. it wil be in all versions. But we corrected it only in Airflow 2 as 1.10 is end-of-life as of June 2021 and you are on your own to apply corrections (that's the consequence of being end-of-life).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1014998226


   Most of the images 2.1.1+ are refreshed now (I will refresh even older images - down to 2.0.0). Can you please @NadimYounes verify that your image works after refresh (I see that you use 2.0.2 They should refresh  in ~ 2 hours or so).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] shaharke-af commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
shaharke-af commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1020914515


   hello
   this is hitting us with 2.1.4
   is there a workaround ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] potiuk edited a comment on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
potiuk edited a comment on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1021249750


   > hello this is hitting us with 2.1.4 is there a workaround ?
   
   You need to pull new image - the images were refreshed including the new key.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] razi-ahmad commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
razi-ahmad commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1025016405


   I'm getting the same error with the following command
   FROM mysql:5.7.34
   
   # update & install dependencies
   RUN apt-get update -y \
       && apt-get install -y git


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [airflow] zt50tz commented on issue #20911: Apt MySQL Client fails to install due to incorrect GPG Key

Posted by GitBox <gi...@apache.org>.
zt50tz commented on issue #20911:
URL: https://github.com/apache/airflow/issues/20911#issuecomment-1025238690


   In ubuntu you can run this command
   `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 467B942D3A79BD29`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org