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

pkg/rhcos/ami: Update name filter to "redhat-coreos-*" #572

Merged
merged 1 commit into from
Oct 31, 2018

Commits on Oct 30, 2018

  1. pkg/rhcos/ami: Update name filter to "redhat-coreos-*"

    The OS folks have a new pipeline for publishing these AMIs, and
    they're setting these new names.  Current output:
    
      $ curl -sL https://rhcos-release-browser-coreos.int.open.paas.redhat.com/storage/releases/maipo/47.33/meta.json | jq .amis
      [
        {
          "name": "us-east-1",
          "hvm": "ami-0fd0205c3c81d0412"
        }
      ]
      $ AWS_DEFAULT_REGION=us-east-1 aws ec2 describe-images --image-ids ami-0fd0205c3c81d0412 --output json
      {
         "Images": [
             {
                 "VirtualizationType": "hvm",
                 "Description": "Red Hat CoreOS \"maipo\" (OpenShift) 47.33",
                 "Tags": [
                     {
                         "Value": "redhat-coreos-maipo-47.33-hvm",
                         "Key": "Name"
                     }
                 ],
                 "Hypervisor": "xen",
                 "EnaSupport": true,
                 "SriovNetSupport": "simple",
                 "ImageId": "ami-0fd0205c3c81d0412",
                 "State": "available",
                 "BlockDeviceMappings": [
                     {
                         "DeviceName": "/dev/xvda",
                         "Ebs": {
                             "Encrypted": false,
                             "DeleteOnTermination": true,
                             "VolumeType": "gp2",
                             "VolumeSize": 8,
                             "SnapshotId": "snap-08318a8024617da0b"
                         }
                     },
                     {
                         "DeviceName": "/dev/xvdb",
                         "VirtualName": "ephemeral0"
                     }
                 ],
                 "Architecture": "x86_64",
                 "ImageLocation": "531415883065/redhat-coreos-maipo-47.33-hvm",
                 "RootDeviceType": "ebs",
                 "OwnerId": "531415883065",
                 "RootDeviceName": "/dev/xvda",
                 "CreationDate": "2018-10-30T15:27:07.000Z",
                 "Public": false,
                 "ImageType": "machine",
                 "Name": "redhat-coreos-maipo-47.33-hvm"
             }
         ]
      }
    
    For the previous pipeline, see the output in d01ac5d (pkg/rhcos:
    Default to the most-recent AMI, 2018-09-19, openshift#290).
    wking committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    8c0d7b6 View commit details
    Browse the repository at this point in the history