DNS Search Domains not honored in Amazon ECS Plugin

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: Minor
    • Component/s: amazon-ecs-plugin
    • None

      It appears that the ECSService.java does not implement .withDnsSearchDomains() in the ContainerDefinition() for the AWS SDK.

       
      finalContainerDefinitiondef=newContainerDefinition()
      .withName(familyName)
      .withImage(template.getImage())
      .withEnvironment(template.getEnvironmentKeyValuePairs())
      .withExtraHosts(template.getExtraHostEntries())
      .withMountPoints(template.getMountPointEntries())
      .withCpu(template.getCpu())
      .withPrivileged(template.getPrivileged())
      .withDnsSearchDomains(template.getDnsSearchDomainEntries())
      .withEssential(true);
       
       
      It also appears that the return object in the ECSTaskTemplate.java returns a string instead of a List<String> which is required to pass multiple search domains.
       
      This appears to be in the 1.11 version of the plugin. Is there a new plugin or update to resolve this?

            Assignee:
            Philipp Garbe
            Reporter:
            danny oneil
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: