-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Additions to vs docker to support teamd, bgp and configuring interfaces. #1962
Closed
Closed
Changes from 9 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
8dce4fd
adding to start.sh
NehaRajeM a7a713c
adding teamd support
NehaRajeM 1c83448
Adding teamd template and sh
NehaRajeM 1f0c1a7
Reading from minigraph into config db
NehaRajeM 58a26ee
Adding deployment map. Should have been taken care by debian ext.j2
NehaRajeM 9fce6b6
Adding interfaces template
NehaRajeM 75fcb66
Adding quagga specific things
NehaRajeM fb78f4d
adding interfaces config sh
NehaRajeM d8de4c2
Adding support for ipv6 and bgp quagga
NehaRajeM d6fc012
Merge branch 'master' into dev
NehaRajeM af251e1
Fixing file references
NehaRajeM c0d1387
Adding sonic_version yml
NehaRajeM bdb7771
Adding lldpd
NehaRajeM 8fe142f
fix
NehaRajeM 8b50ffb
Merge branch 'master' into dev
NehaRajeM 3f39a98
Adding missing files
NehaRajeM 2a071b5
fixing order of minigraph init
NehaRajeM 0e2f319
Fixing minigraph.xml
NehaRajeM File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,13 @@ COPY ["supervisord.conf", "/etc/supervisor/conf.d/"] | |
COPY ["files/configdb-load.sh", "/usr/bin/"] | ||
COPY ["files/arp_update", "/usr/bin"] | ||
|
||
COPY ["files/image_config/interfaces/interfaces.j2", "/usr/share/sonic/templates/"] | ||
COPY ["files/image_config/asn/deployment_id_asn_map.yml", "/etc/sonic/"] | ||
COPY ["../../../dockers/docker-teamd/teamd.sh", "/usr/bin/"] | ||
COPY ["../../../dockers/docker-teamd/teamd.j2", "/usr/share/sonic/templates/"] | ||
COPY ["../../../dockers/docker-fpm-quagga/bgpcfgd", "/usr/bin/"] | ||
COPY ["../../../dockers/docker-fpm-quagga/*.j2", "/usr/share/sonic/templates/"] | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Copied files. Keep them in sync with the latest by adding it to the makefile/rules.mk |
||
RUN echo "docker-sonic-vs" > /etc/hostname | ||
RUN touch /etc/quagga/zebra.conf | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
4 spaces
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we need to move this to vs start.sh before configdb-load.sh, the basic idea is to use minigraph to generate configdb, then here we can do configdb-load.sh
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved.