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

Support L4-L7 Virtual IPs - class fv:Vip (DCNE-45) #1254

Open
bardahlm opened this issue Jul 17, 2024 · 1 comment
Open

Support L4-L7 Virtual IPs - class fv:Vip (DCNE-45) #1254

bardahlm opened this issue Jul 17, 2024 · 1 comment
Labels
enhancement jira-sync Sync this issue to Jira

Comments

@bardahlm
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

To support server clusters set up with DSR (direct server return), L4-L7 Virtual IPs needs to be configured under the EPG.

New or Affected Resource(s) + ACI Class(es):

  • aci_application_epg + fv:Vip

APIC version and APIC Platform

  • V x.x.x and on-prem

Potential Terraform Configuration

resource "aci_application_epg" "fooapplication_epg" {
    application_profile_dn  = aci_application_profile.app_profile_for_epg.id
    name                    = "demo_epg"
    description             = "from terraform"
    annotation              = "tag_epg"
    exception_tag           = "0"
    flood_on_encap          = "disabled"
    fwd_ctrl                = "none"
    has_mcast_source        = "no"
    is_attr_based_epg       = "no"
    match_t                 = "AtleastOne"
    name_alias              = "alias_epg"
    pc_enf_pref             = "unenforced"
    pref_gr_memb            = "exclude"
    prio                    = "unspecified"
    shutdown                = "no"
    relation_fv_rs_bd       = aci_bridge_domain.example.id
    l4l7_virtual_ip {
      addr = "10.2.3.4"
      description = "L4 service vip"
    }
    l4l7_virtual_ip {
      addr = "2001:db8:a0b:12f0::5"
      description = "L4 service vip ipv6"
    }
}

References

https://www.cisco.com/c/en/us/solutions/collateral/data-center-virtualization/application-centric-infrastructure/white-paper-c11-739989.html#L4L7VirtualIPs

  • #0000
@akinross
Copy link
Collaborator

HI @bardahlm,

Thank you for raising this issue, I will add it to the to do items. I am not sure this will be added to the resource itself but will likely be a separate resource since we typically only add relationship classes to the resource. Will be discussed with the team when it is assigned.

@samiib samiib added the jira-sync Sync this issue to Jira label Aug 12, 2024
@github-actions github-actions bot changed the title Support L4-L7 Virtual IPs - class fv:Vip Support L4-L7 Virtual IPs - class fv:Vip (DCNE-45) Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement jira-sync Sync this issue to Jira
Projects
None yet
Development

No branches or pull requests

3 participants