Thursday, 2019-01-31

openstackgerritMerged openstack/airship-treasuremap master: Auto chart/image uplift to latest  https://review.openstack.org/63390701:27
*** jamesgu_ has quit IRC01:32
*** jamesgu has quit IRC01:32
*** dims has quit IRC02:38
*** jamesgu_ has joined #airshipit03:41
*** jamesgu has joined #airshipit03:41
*** cfriesen has quit IRC05:37
*** jamesgu has quit IRC06:47
*** jamesgu_ has quit IRC06:47
openstackgerritSmruti Soumitra Khuntia proposed openstack/airship-shipyard master: [WIP] User context tracing through logging  https://review.openstack.org/63387307:10
openstackgerritSmruti Soumitra Khuntia proposed openstack/airship-shipyard master: [WIP] User context tracing through logging  https://review.openstack.org/63387307:11
openstackgerritSmruti Soumitra Khuntia proposed openstack/airship-shipyard master: [WIP] User context tracing through logging  https://review.openstack.org/63387308:30
openstackgerritSmruti Soumitra Khuntia proposed openstack/airship-shipyard master: [WIP] User context tracing through logging  https://review.openstack.org/63387308:52
*** georgk has joined #airshipit10:24
*** roman_g has quit IRC10:49
*** roman_g has joined #airshipit11:23
openstackgerritPradeep Kumar proposed openstack/airship-promenade master: This commit is to create logging section in promenade.conf and overriding log_level value in it using values.yaml.  https://review.openstack.org/62915411:32
openstackgerritGeorg Kunz proposed openstack/airship-in-a-bottle master: [WIP] Configuration for testing DPDK in multi-node AIAB  https://review.openstack.org/63420711:48
*** lemko has joined #airshipit12:04
*** dims has joined #airshipit14:57
*** cfriesen has joined #airshipit14:57
cfriesenwhen redefining the members of a chartgroup in an armada override file, do all the parts of the chartgroup schema need to be present, or can some be omitted (and thus picked up from the existing chartgroup definition from before the overrides)?15:04
*** pkaralis has quit IRC15:11
*** pkaralis has joined #airshipit15:14
*** michael-beaver has joined #airshipit15:32
*** shoaibwr has quit IRC15:38
*** shoaibwr has joined #airshipit15:38
openstackgerritMerged openstack/airship-armada master: Move grpc tools to test requirements  https://review.openstack.org/63380916:06
openstackgerritSamantha Blanco proposed openstack/airship-pegleg master: Add service layer  https://review.openstack.org/60762316:16
*** jamesgu has joined #airshipit16:16
*** jamesgu_ has joined #airshipit16:16
openstackgerritScott Hussey proposed openstack/airship-in-a-bottle master: Cache registry image source config  https://review.openstack.org/63352516:28
*** mbeierl has joined #airshipit16:28
openstackgerritScott Hussey proposed openstack/airship-in-a-bottle master: Support update site action  https://review.openstack.org/63426516:29
*** sreejithp has joined #airshipit16:29
openstackgerritMerged openstack/airship-maas master: (fix) disable dhcp when detaching rack  https://review.openstack.org/63406116:33
openstackgerritMerged openstack/airship-maas master: (chart) rackd pod readiness check  https://review.openstack.org/63406216:34
*** aaronsheffield has joined #airshipit16:34
b-strcfriesen, I assume you're looking at a "replacement" document, Deckhand style?  If so, there's an alignment that needs to occur in the metadata, but the merging content in the "child" document need to repeat everything (but would have yaml keys leading to what's being overridden. So, you can skip stuff, but the parts that are being merged need to be in the same nesting of yaml.  Not sure if I'm answering your question?16:36
b-strwhoops, lost a "doesn't"  - it doesn't need to repeat everything else16:37
*** sthussey has joined #airshipit16:39
openstackgerritMerged openstack/airship-pegleg master: CLI capability to generate and encrypt passphrases  https://review.openstack.org/60542516:39
cfriesenb-str: as a concrete example, if I have the following in my armada manifest file (http://paste.openstack.org/show/744322/) and I want to specify a --values file which will remove "openstack-garbd" from the chartgroup, what would that values file need to look like?16:40
b-strah, I'm on a different page, sorry.16:40
seaneagancfriesen: should be something like: `armada apply <manifest file> --set chart_group:openstack-mariadb:chartgroup=['openstack-mariadb']`16:58
seaneaganhere's the docs we have: https://airshipit.readthedocs.io/projects/armada/en/latest/operations/guide-use-armada.html?highlight=override#overriding-manifest-values16:58
seaneaganwhich also shows how to use --values if that is preferable17:00
cfriesenis there a way to run "armada apply" (or similar) that would dump out the final yaml after all the overrides have been applied?17:02
cfriesento make sure that the desired changes have actually been made.  (Since for something like "sequenced" it might not be obvious if it's there or not.)17:02
openstackgerritSamantha Blanco proposed openstack/airship-pegleg master: Add service layer  https://review.openstack.org/60762317:06
seaneaganhmm, I don't think that's there, agree that would be useful likely triggered by the --dry-run or maybe combo of `--debug --dry-run`17:07
cfriesenseaneagan: I was thinking it'd make sense to add support for "--set" and "--values" to "armada validate", then emit the final YAML if --debug is enabled17:09
seaneaganyes I think I like that even better as an Armada-native solution. There hasn't been a lot of work put into overrides lately as many have been relying on Deckhand for this use case to date.17:17
openstackgerritScott Hussey proposed openstack/airship-in-a-bottle master: Support update site action  https://review.openstack.org/63426517:28
*** lemko has quit IRC17:43
*** georgk has quit IRC17:45
*** georgk has joined #airshipit17:54
*** georgk has quit IRC17:58
jamesgu_Hello, I have an Armada question. When I reuse the ceph provisioner chart to deploy the ceph conf configmap, but not deploying the pod, the armada workflow seems to be stuck at that chart as there is no pod. Is that expected. Is there a workaround?18:26
openstackgerritBryan Strassner proposed openstack/airship-shipyard master: Switch to ubuntu base image  https://review.openstack.org/63329718:31
seaneaganjamesgu: yes armada waits for at least one pod to be ready by default, but you can turn off armada's wait logic by setting `data: wait: resources: []` in the Armada/Chart/v1 doc18:35
seaneaganhttps://airship-armada.readthedocs.io/en/latest/operations/guide-build-armada-yaml.html#wait18:36
jamesgu_seaneagan: that is awesome. will give that a try!18:45
*** georgk has joined #airshipit19:05
*** georgk has quit IRC19:09
openstackgerritScott Hussey proposed openstack/airship-in-a-bottle master: (multinode) Make workspace persist reboot  https://review.openstack.org/63429419:09
openstackgerritSean Eagan proposed openstack/airship-treasuremap master: Uplift armada, tiller, kubernetes, etcd, coredns  https://review.openstack.org/63429619:16
*** jamesgu has quit IRC19:38
*** jamesgu_ has quit IRC19:38
*** jamesgu has joined #airshipit19:39
*** jamesgu_ has joined #airshipit19:39
openstackgerritMerged openstack/airship-in-a-bottle master: Script to smoke check kube  https://review.openstack.org/63254219:41
openstackgerritScott Hussey proposed openstack/airship-in-a-bottle master: Support update site action  https://review.openstack.org/63426519:56
*** sreejithp_ has joined #airshipit20:30
*** sreejithp has quit IRC20:31
openstackgerritSamantha Blanco proposed openstack/airship-pegleg master: Add service layer  https://review.openstack.org/60762321:00
openstackgerritMerged openstack/airship-armada master: Add configurability of delete timeout  https://review.openstack.org/63077921:26
openstackgerritRick Bartra proposed openstack/airship-maas master: Run maas-rack and maas-region containers as non-privileged  https://review.openstack.org/63326921:31
openstackgerritSean Eagan proposed openstack/airship-armada master: Adapt and extend wait logic to chart deletes  https://review.openstack.org/63282121:55
openstackgerritKaspars Skels proposed openstack/airship-in-a-bottle master: Add lightweight debut report for gate-multinode  https://review.openstack.org/63432522:08
sgrasleyHas anyone here had any success setting up multiple VIP's for internal and external access?22:29
sgrasleyin an ingress controller?22:30
sthusseyThat is our internal standard deployment22:37
sthusseyOr wait, you mean separate VIPs for internal and external?22:37
sthusseywhat does internal and external mean in this case?22:37
*** crepe has joined #airshipit22:40
crepeHas anybody seen any issues with the airskiff development environment deployment scripts? I can't seem to get mine working and I was wondering if there were any known issues atm.22:42
*** roman_g has quit IRC23:03
openstackgerritLev Morgan proposed openstack/airship-pegleg master: CLI: Add command to generate genesis bundle  https://review.openstack.org/61339223:06
*** michael-beaver has quit IRC23:09
*** michael-beaver has joined #airshipit23:32
sgrasleysthussey:  I am hoping to create a multi-network control plane and have VIP's  defined for access from each network.23:32
sgrasleyI have been able to create VIP for a single network based on SKT documentation and this works...23:33
sthusseyI'd just deploy another ingress controller then23:34
sthusseythe ingress chart doesn't support multiple VIPs23:34
sthusseyas far as I know they can both watch for the same sets of ingress documents and configure their corresponding ingress23:34
sgrasleyI noticed that it doesn't currently support multiple VIPs. I am having trouble getting ingress controllers to use different configmaps with overrides.23:36
portdirectsgrasley: are you using the routed, or keepalived vip approach?23:36
sgrasleyrouted currently.23:37
portdirectroger - wasnt sure what skt docs were pointing too23:37
portdirectsgrasley: you may need to sperate the controllers by k8s namespaces - i think the chart is limited inthat it makes assumptions about the configmap names23:37
portdirectit would be simple to prepend the release name to them - which would allow multiples in the same ns - but thats where we are today.23:38
sgrasleyI have been exploring separate namespaces but have not had success as of yet so I thought I would check here.23:39
*** sreejithp_ has quit IRC23:40
openstackgerritSreejith Punnapuzha proposed openstack/airship-promenade master: Implements: etcd backup  https://review.openstack.org/60049323:44
*** aaronsheffield has quit IRC23:50
openstackgerritKaspars Skels proposed openstack/airship-in-a-bottle master: Add lightweight debug report for gate-multinode  https://review.openstack.org/63432523:53

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!