forked from openshift/ansible-service-broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ansible-service-broker.spec
1274 lines (1156 loc) · 61.4 KB
/
ansible-service-broker.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%if 0%{?fedora} || 0%{?rhel} >= 6
%global with_devel 1
%global with_bundled 0
%global with_debug 0
%global with_check 0
%global with_unit_test 0
%else
%global with_devel 0
%global with_bundled 0
%global with_debug 0
%global with_check 0
%global with_unit_test 0
%endif
%if 0%{?with_debug}
%global _dwz_low_mem_die_limit 0
%else
%global debug_package %{nil}
%endif
%global provider github
%global provider_tld com
%global project openshift
%global repo ansible-service-broker
%global openshift_release latest
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
%global import_path %{provider_prefix}
%global gopath /usr/share/gocode
%if 0%{?copr}
%define build_timestamp .%(date +"%Y%m%d%H%M%%S")
%else
%define build_timestamp %{nil}
%endif
%define selinux_variants targeted
%define moduletype apps
%define modulename ansible-service-broker
Name: %{repo}
Epoch: 1
Version: 1.4.5
Release: 1%{build_timestamp}%{?dist}
Summary: Ansible Service Broker
License: ASL 2.0
URL: https://%{provider_prefix}
Source0: https://%{provider_prefix}/archive/%{name}-%{version}.tar.gz
# e.g. el6 has ppc64 arch without gcc-go, so EA tag is required
#ExclusiveArch: %%{?go_arches:%%{go_arches}}%%{!?go_arches:%%{ix86} x86_64 % {arm}}
ExclusiveArch: %{ix86} x86_64 %{arm} aarch64 ppc64le %{mips} s390x
BuildRequires: golang
Requires(pre): shadow-utils
Requires: %{name}-selinux
BuildRequires: device-mapper-devel
BuildRequires: btrfs-progs-devel
%if ! 0%{?with_bundled}
%endif
%description
%{summary}
%package -n automation-broker-apb-role
Summary: APB Role for the broker
BuildArch: noarch
%description -n automation-broker-apb-role
APB role for the broker
%package container-scripts
Summary: scripts required for running ansible-service-broker in a container
BuildArch: noarch
%description container-scripts
containers scripts for ansible-service-broker
%package selinux
Summary: selinux policy module for %{name}
BuildRequires: checkpolicy, selinux-policy-devel, hardlink, policycoreutils
BuildRequires: /usr/bin/pod2man
Requires(post): /usr/sbin/semodule, /sbin/restorecon, /usr/sbin/setsebool, /usr/sbin/selinuxenabled, /usr/sbin/semanage
Requires(post): policycoreutils-python
Requires(post): selinux-policy-targeted
Requires(postun): /usr/sbin/semodule, /sbin/restorecon
BuildArch: noarch
%description selinux
selinux policy module for %{name}
%post selinux
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -s ${selinuxvariant} -i \
%{_datadir}/selinux/${selinuxvariant}/%{modulename}.pp.bz2 > /dev/null
done
%postun selinux
if [ $1 -eq 0 ] ; then
for selinuxvariant in %{selinux_variants}
do
/usr/sbin/semodule -s ${selinuxvariant} -r %{modulename} > /dev/null
done
fi
%pre
getent group ansibleservicebroker || groupadd -r ansibleservicebroker
getent passwd ansibleservicebroker || \
useradd -r -g ansibleservicebroker -d /var/lib/ansibleservicebroker -s /sbin/nologin \
ansibleservicebroker
exit 0
%post
%systemd_post %{name}.service
%postun
%systemd_postun
%if 0%{?with_devel}
%package devel
Summary: %{summary}
BuildArch: noarch
Requires: golang
Requires: device-mapper-devel
Requires: btrfs-progs-devel
%description devel
devel for %{name}
%{import_path} prefix.
%endif
%if 0%{?with_unit_test} && 0%{?with_devel}
%package unit-test
Summary: Unit tests for %{name} package
BuildRequires: golang
%if 0%{?with_check}
#Here comes all BuildRequires: PACKAGE the unit tests
#in %%check section need for running
%endif
# test subpackage tests code from devel subpackage
Requires: %{name}-devel = %{version}-%{release}
%description unit-test
unit-test for %{name}
%endif
%prep
%setup -q -n %{repo}-%{version}
%if !0%{?copr}
patch -p1 < downstream.patch
%endif
ln -sf vendor src
mkdir -p src/github.com/openshift/ansible-service-broker
cp -r pkg src/github.com/openshift/ansible-service-broker
%build
export GOPATH=$(pwd):%{gopath}
go build -tags "seccomp selinux" -ldflags "-s -w" ./cmd/broker
go build -tags "seccomp selinux" -ldflags "-s -w" ./cmd/migration
go build -tags "seccomp selinux" -ldflags "-s -w" ./cmd/dashboard-redirector
#Build selinux modules
# create selinux-friendly version from VR and replace it inplace
perl -i -pe 'BEGIN { $VER = join ".", grep /^\d+$/, split /\./, "%{version}.%{release}"; } s!\@\@VERSION\@\@!$VER!g;' extras/%{modulename}.te
%if 0%{?rhel} >= 6
distver=rhel%{rhel}
%endif
%if 0%{?fedora} >= 18
distver=fedora%{fedora}
%endif
for selinuxvariant in %{selinux_variants}
do
pushd extras
make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile DISTRO=${distver}
bzip2 -9 %{modulename}.pp
mv %{modulename}.pp.bz2 %{modulename}.ppbz2.${selinuxvariant}
make NAME=${selinuxvariant} -f /usr/share/selinux/devel/Makefile clean DISTRO=${distver}
popd
done
rm -rf src
%install
install -d -p %{buildroot}%{_bindir}
install -p -m 755 broker %{buildroot}%{_bindir}/asbd
install -p -m 755 migration %{buildroot}%{_bindir}/migration
install -p -m 755 dashboard-redirector %{buildroot}%{_bindir}/dashboard-redirector
# broker apb
mkdir -p %{buildroot}/opt/apb/ %{buildroot}/opt/ansible/roles/automation-broker-apb
mv ansible_role/playbooks %{buildroot}/opt/apb/actions
mv ansible_role/defaults ansible_role/files ansible_role/tasks ansible_role/templates ansible_role/vars %{buildroot}/opt/ansible/roles/automation-broker-apb
sed -i "s/\(broker_image_tag:\).*/\1 %{openshift_release}/" \
%{buildroot}/opt/ansible/roles/automation-broker-apb/defaults/main.yml
sed -i "s/\(broker_dockerhub_tag:\).*/\1 %{openshift_release}/" \
%{buildroot}/opt/ansible/roles/automation-broker-apb/defaults/main.yml
install -p -m 755 build/entrypoint.sh %{buildroot}%{_bindir}/entrypoint.sh
install -d -p %{buildroot}%{_sysconfdir}/%{name}
install -p -m 644 etc/example-config.yaml %{buildroot}%{_sysconfdir}/%{name}/config.yaml
install -d -p %{buildroot}%{_libexecdir}/%{name}
cp -r scripts/* %{buildroot}%{_libexecdir}/%{name}
install -d -p %{buildroot}%{_unitdir}
install -p extras/%{name}.service %{buildroot}%{_unitdir}/%{name}.service
install -d -p %{buildroot}%{_var}/log/%{name}
touch %{buildroot}%{_var}/log/%{name}/asb.log
# install selinux policy modules
for selinuxvariant in %{selinux_variants}
do
install -d %{buildroot}%{_datadir}/selinux/${selinuxvariant}
install -p -m 644 extras/%{modulename}.ppbz2.${selinuxvariant} \
%{buildroot}%{_datadir}/selinux/${selinuxvariant}/%{modulename}.pp.bz2
done
# install interfaces
install -d %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}
install -p -m 644 extras/%{modulename}.if %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}/%{modulename}.if
# hardlink identical policy module packages together
/usr/sbin/hardlink -cv %{buildroot}%{_datadir}/selinux
# source codes for building projects
%if 0%{?with_devel}
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
# find all *.go but no *_test.go files and generate devel.file-list
for file in $(find . -iname "*.go" \! -iname "*_test.go" | grep -v "^./Godeps") ; do
echo "%%dir %%{gopath}/src/%%{import_path}/$(dirname $file)" >> devel.file-list
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file)
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list
done
for file in $(find . -iname "*.proto" | grep -v "^./Godeps") ; do
echo "%%dir %%{gopath}/src/%%{import_path}/$(dirname $file)" >> devel.file-list
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file)
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
echo "%%{gopath}/src/%%{import_path}/$file" >> devel.file-list
done
%endif
# testing files for this project
%if 0%{?with_unit_test} && 0%{?with_devel}
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/
# find all *_test.go files and generate unit-test.file-list
for file in $(find . -iname "*_test.go" | grep -v "^./Godeps"); do
echo "%%dir %%{gopath}/src/%%{import_path}/$(dirname $file)" >> devel.file-list
install -d -p %{buildroot}/%{gopath}/src/%{import_path}/$(dirname $file)
cp -pav $file %{buildroot}/%{gopath}/src/%{import_path}/$file
echo "%%{gopath}/src/%%{import_path}/$file" >> unit-test.file-list
done
%endif
%if 0%{?with_devel}
sort -u -o devel.file-list devel.file-list
%endif
%check
%if 0%{?with_check} && 0%{?with_unit_test} && 0%{?with_devel}
%if ! 0%{?with_bundled}
export GOPATH=%{buildroot}/%{gopath}:%{gopath}
%else
export GOPATH=%{buildroot}/%{gopath}:$(pwd)/Godeps/_workspace:%{gopath}
%endif
%if ! 0%{?gotest:1}
%global gotest go test
%endif
# FAIL: TestFactoryNewTmpfs (0.00s), factory_linux_test.go:59: operation not permitted
#%%gotest %%{import_path}/libcontainer
%gotest %{import_path}/libcontainer/cgroups
# --- FAIL: TestInvalidCgroupPath (0.00s)
# apply_raw_test.go:16: couldn't get cgroup root: mountpoint for cgroup not found
# apply_raw_test.go:25: couldn't get cgroup data: mountpoint for cgroup not found
#%%gotest %%{import_path}/libcontainer/cgroups/fs
%gotest %{import_path}/libcontainer/configs
%gotest %{import_path}/libcontainer/devices
# undefined reference to `nsexec'
#%%gotest %%{import_path}/libcontainer/integration
%gotest %{import_path}/libcontainer/label
# Unable to create tstEth link: operation not permitted
#%%gotest %%{import_path}/libcontainer/netlink
# undefined reference to `nsexec'
#%%gotest %%{import_path}/libcontainer/nsenter
%gotest %{import_path}/libcontainer/selinux
%gotest %{import_path}/libcontainer/stacktrace
#constant 2147483648 overflows int
#%%gotest %%{import_path}/libcontainer/user
#%%gotest %%{import_path}/libcontainer/utils
#%%gotest %%{import_path}/libcontainer/xattr
%endif
#define license tag if not already defined
%{!?_licensedir:%global license %doc}
%files
%license LICENSE
%{_bindir}/asbd
%{_bindir}/migration
%{_bindir}/dashboard-redirector
%attr(750, ansibleservicebroker, ansibleservicebroker) %dir %{_sysconfdir}/%{name}
%attr(640, ansibleservicebroker, ansibleservicebroker) %config %{_sysconfdir}/%{name}/config.yaml
%{_unitdir}/%{name}.service
%{_libexecdir}/%{name}
%attr(750, ansibleservicebroker, ansibleservicebroker) %dir %{_var}/log/%{name}
%attr(640, ansibleservicebroker, ansibleservicebroker) %{_var}/log/%{name}/asb.log
%files -n automation-broker-apb-role
/opt/apb/actions
/opt/ansible/roles
%files container-scripts
%{_bindir}/entrypoint.sh
%files selinux
%attr(0600,root,root) %{_datadir}/selinux/*/%{modulename}.pp.bz2
%{_datadir}/selinux/devel/include/%{moduletype}/%{modulename}.if
%if 0%{?with_devel}
%files devel -f devel.file-list
%license LICENSE
%dir %{gopath}/src/%{provider}.%{provider_tld}/%{project}
%dir %{gopath}/src/%{import_path}
%endif
%if 0%{?with_unit_test} && 0%{?with_devel}
%files unit-test -f unit-test.file-list
%license LICENSE
%endif
%changelog
* Mon Feb 11 2019 jesus m. rodriguez <[email protected]> 1.4.5-1
- Bump bundle-lib release to 0.2.17 (#1180) ([email protected])
- Use new operator (#1175) ([email protected])
- Nit fixes ([email protected])
- Add operator config doc ([email protected])
* Fri Feb 01 2019 Jason Montleon <[email protected]> 1.4.4-1
- Adding 2018-11-27 meeting notes (#1176) ([email protected])
- Tweaks ([email protected])
- Add more operator related RBAC ([email protected])
- Explicitly set kubeconfig on lookups ([email protected])
- Add missing operator env vars ([email protected])
- Bump csv version (#1170) ([email protected])
- Fix typo ([email protected])
- Add missing task name ([email protected])
- Disable reconcile period ([email protected])
- Redeploy broker on config changes ([email protected])
- Add configurable registries ([email protected])
- Add OLM support to new operator ([email protected])
- Use old operator builds until new one stabalizes ([email protected])
- bundle-lib 0.2.16 release ([email protected])
- Simple fixes ([email protected])
- Rewrite asb operator for operator-sdk ([email protected])
- Update container names for 311 back compat ([email protected])
- Update test to use non openshift prefixed ns ([email protected])
- Update dr & asb route names for 311 ([email protected])
- Update svc and route name for 311 backwards compat ([email protected])
- Update dc for 311 compat ([email protected])
- Update for 311 backwards compat ([email protected])
- Use 3.11 version of asb image ([email protected])
- Put all the olm bits in olm-catalog ([email protected])
- Add install modes ([email protected])
- Add operator csv (#1160) ([email protected])
- Update OWNERS ([email protected])
- Add Derek to OWNERS file ([email protected])
- Fix ansible assertion syntax (#1159) ([email protected])
- Revert "Add ASB operator deployment manifest assets." (#1156)
- Check for truthy since these values are always defined
- Update operator Dockerfile to use AO master, add subresource in CRD
- Make it possible to run tests only ([email protected])
- Add Dockerfile link to prepare for automated downstream builds
- Fix downstream container builds ([email protected])
- Fix operator image and add "IMAGE" environment variable.
- Move ASB operator manifests from /manifests/0.1.0 to /manifests
- Fix ASB catalogsource configmap ([email protected])
- Change name/source values in CatalogSource and Subscription
- Add ASB operator 0.1.0 deployment manifest assets. ([email protected])
- Update operator playbook to use IMAGE from environment (#1150)
- Check if ca-bundle configmap already exists to avoid contention with cert-
signer operator (#1147) ([email protected])
- Fix caBundle population for 4.0 deploys (#1146) ([email protected])
* Tue Dec 04 2018 Jason Montleon <[email protected]> 1.4.3-1
- Add epoch to package (#1141) ([email protected])
- Filter to bool when waiting for broker (#1140) ([email protected])
- Clean up .travis.yml and remove duplicate tests (#1133) ([email protected])
- Add djzager to OWNERS (#1134) ([email protected])
- Add jmontleon to OWNERS (#1132) ([email protected])
- Fix operator lint task in openshift CI (#1131) ([email protected])
- Automation Broker meeting 20181113 (#1129) ([email protected])
- add linting for operator role (#1128) ([email protected])
- Set OLM_MANAGED to true by default in the operator Dockerfile (#1127)
- Operator should use meta from AO (#1126) ([email protected])
- Remove unused asbcli. (#1125) ([email protected])
- 2018-10-30 Automation Broker IRC meeting logs (#1124) ([email protected])
- 1062 - disallow the SAME UUID for instance and bindings (#1081)
* Thu Oct 25 2018 jesus m. rodriguez <[email protected]> 1.4.2-1
- Bug 1643303 - Update to bundle-lib 0.2.15 to fix net-policy issue (#1111) ([email protected])
- Fix kubernetes test failures (#1118) ([email protected])
- Fix APB/Operator ansible task order. (#1116) ([email protected])
- Use 3.11 instead of latest for ansible-service-broker image (#1108) ([email protected])
- Additional OLM support (#1106) ([email protected])
- Get golint changed upstream. (#1109) ([email protected])
- Fix deploy template default value (#1103) ([email protected])
- Fix Makefile (#1101) ([email protected])
- Fix canary, use same tag for canary/nightly broker and apb's (#1100) ([email protected])
- Automation broker meeting logs 10/02/2018 (#1099) ([email protected])
- Fix v3.10 automation-broker-apb Dockerfile (#1095) ([email protected])
- add v3.9 Dockerfile (#1093) ([email protected])
- Fix dockerfile typo (#1091) ([email protected])
- Update rpm spec and add apb Dockerfiles (#1090) ([email protected])
- Fix RPM build (#1086) ([email protected])
- Add broker operator support (#1078) ([email protected])
- Disable travis kube until it can be fixed (#1085) ([email protected])
- Add dockerfiles for old releases (#1084) ([email protected])
- Use the 4.0 releaser branch (#1080) ([email protected])
* Tue Sep 11 2018 jesus m. rodriguez <[email protected]> 1.4.1-1
- Prepare for 1.4 release (#1079) ([email protected])
- add operation and param validation (#1077) ([email protected])
- Disable keeping namespace on error in ASB (#1075) ([email protected])
* Fri Sep 07 2018 Dylan Murray <[email protected]> 1.3.17-1
- Bump bundle-lib release to 0.2.14 (#1074) ([email protected])
- Add 2018-09-04 meeting notes (#1069) ([email protected])
- Bug 1625809 - accept quoted apb argument (#1072) ([email protected])
* Tue Sep 04 2018 Dylan Murray <[email protected]> 1.3.16-1
- Bump bundle-lib release to 0.2.13 (#1070) ([email protected])
* Thu Aug 30 2018 Dylan Murray <[email protected]> 1.3.15-1
- Update bundle-lib release to 0.2.12 (#1068) ([email protected])
- Prevent deprovision of brokers with instances (#1067) ([email protected])
- Default to NOT deleting shared broker resources (#1066) ([email protected])
* Tue Aug 28 2018 Dylan Murray <[email protected]> 1.3.14-1
- Update bundle-lib to 0.2.11 (#1065) ([email protected])
- use the new osb prefix (#1064) ([email protected])
- Fix downstream patch for capabilities check (#1063) ([email protected])
* Tue Aug 28 2018 Dylan Murray <[email protected]> 1.3.13-1
- Check for capabilities instead of openshift during APB install (#1060)
- Bug 1622491 - Use fully qualified downstream image (#1061)
* Wed Aug 22 2018 David Zager <[email protected]> 1.3.12-1
- Bug 1615787 - Make a registry configurable via apb (#1057)
* Tue Aug 21 2018 Dylan Murray <[email protected]> 1.3.11-1
- Update source0 in rpm spec (#1055) ([email protected])
* Tue Aug 21 2018 Dylan Murray <[email protected]> 1.3.10-1
- Bug 1581106 - Add bind labels to extcred secret (#1054) ([email protected])
- Fix broker rpm spec (#1053) ([email protected])
- Add 2018-08-21 meeting notes (#1052) ([email protected])
- Bug 1615723 - check for not found ext creds (#1051) ([email protected])
- Bug 1615787 - Add APB Spec to Broker APB (#1048) ([email protected])
- Bug 1610714 - pass bindingid to unbind jobs (#1050) ([email protected])
* Wed Aug 15 2018 David Zager <[email protected]> 1.3.9-1
- Add bundle-lib metrics registration (#1034) ([email protected])
- Update bundle-lib (#1045) ([email protected])
- Fix broker route to line up with service (#1043) ([email protected])
- Bug 1599522 - Include skip_verify_tls doc info for registries (#1040)
- fix coverage to fail when tests fail (#1038) ([email protected])
* Fri Aug 10 2018 David Zager <[email protected]> 1.3.8-1
- Standardize broker endpoints (#1029) ([email protected])
- Add mock for the call to DeleteExtractedCredential (#1039)
- Add route timeout annotation (#1033) ([email protected])
- Bug 1583503 Always run updates (#1032) ([email protected])
- Add 2018-08-07 meeting notes (#1031) ([email protected])
* Mon Aug 06 2018 David Zager <[email protected]> 1.3.7-1
- Bug 1583587 - lower loglevel to debug, wrap others (#1030)
- Bug 1577797 - call flag...Parse to prevent logging error (#1027)
- Bug 1585951 - Delete prov creds on deprovision (#1024) ([email protected])
- remove newline from version log (#1026) ([email protected])
* Tue Jul 31 2018 David Zager <[email protected]> 1.3.6-1
- Update galaxy-adapter to include galaxy URL (#1023) ([email protected])
- update for quay adapter (#1002) ([email protected])
- Add galaxy adapter (#1016) ([email protected])
- Add namespaced broker docs (#1021) ([email protected])
- update obj form definition (#954) ([email protected])
- Improve logging when wait_for_broker fails (#1020) ([email protected])
- Show broker version in logs for easier debugging (#1017) ([email protected])
- 938 - remove run_template from docs (#1018) ([email protected])
- add documentation for API v2 adapter usage (#1003) ([email protected])
- include FQName in spec logging, ID isn't useful enough (#1022)
* Mon Jul 23 2018 David Zager <[email protected]> 1.3.5-1
- Enhance spec reconciliation, using async bootstrap (#1008)
- Add tag field to ASB registry configuration doc (#1012)
- Add ns broker support to the broker's apb (#1015) ([email protected])
- Broker apb rpm (#1014) ([email protected])
- remove golang macros (#1011) ([email protected])
- Fix default APB_IMAGE (#1013) ([email protected])
- removing subject rules review auth and using aggregated rules. (#995)
- Add parsing of param dependencies (#928) ([email protected])
- Automation Broker meeting 7/10/2018 (#1004) ([email protected])
- Simple ci (#1005) ([email protected])
- Use broker-apb test playbook to test the broker (#990) ([email protected])
- Use docker cp instead of mounting host volume (#1000) ([email protected])
- Add IRC meeting notes (#1001) ([email protected])
- Update docs for helm adapter (#998) ([email protected])
- adds docs and plumbing for the skip_verify_tls setting on the rhcc adapter
(#989) ([email protected])
- Support building a debuggable image for development (#926)
* Wed Jun 20 2018 David Zager <[email protected]> 1.3.4-1
- Login for deploy on tag (#994) ([email protected])
* Tue Jun 19 2018 David Zager <[email protected]> 1.3.3-1
- Use travis_tag on tag builds (#993) ([email protected])
- Add hostname to test scripts (#985) ([email protected])
* Tue Jun 19 2018 David Zager <[email protected]> 1.3.2-1
- Pass in namespace to runtime (#991) ([email protected])
- adding unit tests for broker package (#983) ([email protected])
- Remove tag from deployment (#988) ([email protected])
- Fix deployment stage (#987) ([email protected])
- Tie together container images of broker & broker-apb (#986)
- ensure initial state set when job started. reduce repition in job
definitions. Allow jobs to be mocked out at broker level (#909)
* Sun Jun 10 2018 jesus m. rodriguez <[email protected]> 1.3.1-1
- Bug 1585649 - wait group should be added to before go function is kicked off (#977) ([email protected])
- Bug 1583064 - missing action causes many sandboxes (#972) ([email protected])
- Bug 1581580 - skip if bind instance does not have credentials (#964) ([email protected])
- Bug 1578319 - send _apb* parameters to unbind (#960) ([email protected])
- Bug 1572129 - recover deprovision jobs (#953) ([email protected])
- Bug 1576728 - Fixes multiple requests to a CR (#947) ([email protected])
- Bug 1577127 - adding back metrics (#948) ([email protected])
- Bug 1577144 - fixing logging so it is more clear (#949)
- Bump bundle-lib to 0.2.3 (#981) ([email protected])
- reformat tables to be readable without rendering (#980) ([email protected])
- remove coverage badge ([email protected])
- Bundle lib 0.2 (#946) ([email protected])
- Travis should run only for master/release branches (#978) ([email protected])
- Make ci should not do deployment (#975) ([email protected])
- Add Broker APB source to project (#939) ([email protected])
- add v3.10 install method to README (#967) ([email protected])
- Add requested parameters when not in existing service instance (#935) ([email protected])
- Switch from go-logging to logrus (#961) ([email protected])
- dep prune vendor (#962) ([email protected])
- Bump version for next release (#955) ([email protected])
- update config.md for partner registry adapter (#950) ([email protected])
- Update releases in README (#952) ([email protected]) ([email protected])
- doc to show how to use broker via vendor (#940) ([email protected])
* Thu May 10 2018 David Zager <[email protected]> 1.2.11-1
- Bug 1550418 - Return op token on depro in progress (#942)
- bump bundle-lib to 0.1.5 (#937) ([email protected])
- Allow Automation Broker to be useful when used as a dependency (#933)
* Fri May 04 2018 David Zager <[email protected]> 1.2.10-1
- Spell check a bunch of items (#930) ([email protected])
- Add fix for get si npe (#929) ([email protected])
- Bug 1572470 - use binding id as instance, do not error on conflict (#924)
- Bug 1572129 - remove unnecessary SetState (#927) ([email protected])
- Run the apb in a different project (#923) ([email protected])
- Remove dashboard-redirector binary (#925) ([email protected])
- Create broker-apb dir, add install yaml (#916) ([email protected])
* Tue May 01 2018 David Zager <[email protected]> 1.2.9-1
- Bug 1565545 - Adding migration of extracted credentials (#895)
- Update AA to APB in docs (#918) ([email protected])
- Lock helm version for ci (#915) ([email protected])
* Fri Apr 27 2018 David Zager <[email protected]> 1.2.8-1
- Frustration release target (#910) ([email protected])
- Bug 1566924 - renaming crd resources (#907) ([email protected])
- Bug 1533425 - protect against simultaneous updates (#898) ([email protected])
* Wed Apr 25 2018 David Zager <[email protected]> 1.2.7-1
- Clone into broker path ([email protected])
- Use git clone for canary (#906) ([email protected])
- Build migration into canary image (#905) ([email protected])
- fix statements with formatting (#904) ([email protected])
- Bug 1569220 - Add dashboard redirector feature (#897) ([email protected])
- Update scripts to use the broker apb (#891) ([email protected])
- Bug 1567004 - Delete extracted credentials secret during synchronous unbind.
(#899) ([email protected])
- Fix typo in run_latest_build.sh (#903) ([email protected])
* Thu Apr 19 2018 David Zager <[email protected]> 1.2.6-1
- Point to v3.9.0 release of origin (#894) ([email protected])
- link broken - typo fixed (#892)
- Workaround minikube regression for travis (#890) ([email protected])
- add copyright to migration (#888) ([email protected])
- Issue 882 - Simple broker template use release-1.1 (#885) ([email protected])
- expose _apb_service_binding_id to bind role (#883) ([email protected])
- Fix bug 1564542 (#881) ([email protected])
- Add a table to track release dates (#879) ([email protected])
* Fri Apr 06 2018 David Zager <[email protected]> 1.2.5-1
- Changes to subscriber pattern (#828) ([email protected])
- Add relist docs (#873) ([email protected])
- Add migration command (#870) ([email protected])
- Fix docs - enabling RBAC for minikube (#862) ([email protected])
- removing config package from bundle lib. bump to new release (#860)
- make CRD the defaults for all templates (#838) ([email protected])
- make more than one stage for all the tasks we want to do. (#863)
- Warn in the logs that a spec failed to load and continue (#855)
- Make a not to give the developer use cluster-admin (#857)
- Pull the latest ansible version in travis scripts (#856)
- Use the correct versions (#854) ([email protected])
- Use bundle lib (#848) ([email protected])
- Add dep to travis (#849) ([email protected])
- make username available for APB in the serviceInstance (#832)
- minor updates to proposal to clarify a few points (#842)
- Reformatted (#845) ([email protected])
- Create CODE_OF_CONDUCT.md (#841) ([email protected])
- Only grab the token the broker sa is using (#844) ([email protected])
- Display Custom Error Message for the APB via termination-log (#837)
* Mon Mar 19 2018 David Zager <[email protected]> 1.2.4-1
- Format nits (#836) ([email protected])
- APB state support (#809) ([email protected])
- Proposal for Helm Chart Registry Adapter (#830) ([email protected])
- pass provision credentials during deprovision (#821)
- make headings smaller (#831) ([email protected])
* Fri Mar 09 2018 jesus m. rodriguez <[email protected]> 1.2.3-1
- Add a note to run latest about current user (#829) ([email protected])
- Default to an open localregistry policy (#827) ([email protected])
- return the token for a unbind in progress (#824) ([email protected])
- remove extra deletion of extracted credentials in broker package (#825) ([email protected])
- adding a blank line to the help output (#826) ([email protected])
- Add breadcrumbs to release notes (#820) ([email protected])
- switching dependency management from glide to dep (#817) ([email protected])
- Document the Broker's versioning strategy (#810) ([email protected])
- parameterize dao:type. Defaults to etcd (#816) ([email protected])
- Adds Service Bundle contract document (#808) ([email protected])
- Removing links to older fusor GH org (#814) ([email protected])
- Initial pass at proposal to change subscribers (#727) ([email protected])
- Broker client dao (#795) ([email protected])
- Force canary image be built from master (#805) ([email protected])
- parameterize the 'ansible-service-broker' namespace with the NAMESPACE variable (#800) ([email protected])
- Bug 1550385 - Add .default to proxy docs NO_PROXY (#807) ([email protected])
- Remove tmp note re: minishift-addon (#802) ([email protected])
- Broker client vendor update (#794) ([email protected])
- Save extracted credentials into a secret (#775) ([email protected])
- Bug 1548311 - Return success on depro extcred miss (#791) ([email protected])
- Temporarily link to minishift-addons fork (#796) ([email protected])
- Adds docs for installing the broker in minikube. (#792) ([email protected])
- Filter everything when whitelist is empty (#781) ([email protected])
* Fri Feb 23 2018 jesus m. rodriguez <[email protected]> 1.2.2-1
- Bug 1539542 - return bindings_retrievable (#776) ([email protected])
- Bug 1543521 - fix async bind when job already in-progress (#764) ([email protected])
- Bug 1541461 - Deal with buggy encoded scopes from service catalog. (#754) ([email protected])
- Bug 1543029 - last_operation returns correct body with 410 response (#746) ([email protected])
- Bug 1542387 - Print out status of response from RHCC registry if not 200 (#742) ([email protected])
- Bug 1539308 - Do not report errors on dupe depros (#739) ([email protected])
- Bug 1540121 - Return 400 for bad update requests (#736) ([email protected])
- Bug 1541335 - fix auth config parsing (#728) ([email protected])
- Lock asb-brew releaser to 3.10 branch (#788) ([email protected])
- rename file to be more consistent. (#779) ([email protected])
- Fix last op endpoint unbind response (#765) ([email protected])
- apb pkg public interface overhaul (#773) ([email protected])
- fixing k8s ansible service broker template to include namespace config (#777) ([email protected])
- 475 last operation description (#619) ([email protected])
- Remove plan dao methods (#766) ([email protected])
- Proposal for saving extracted credentials (#768) ([email protected])
- Add a warning that the client is an older version (#769) ([email protected])
- Remove upgrade from Ubuntu 14.0 to 16.04 (#762) ([email protected])
- Remove minishift docs and link to golden source (#672) ([email protected])
- Add a mailing list subscribe badge (#758) ([email protected])
- Update simple-broker-template to include necessary roles for local_openshift reg (#749) ([email protected])
- Remove redundant validation copy (#741) ([email protected])
- Travis merges commits so do a diff against HEAD^ (#737) ([email protected])
- Make the endpoints headless for local brokers (#731) ([email protected])
- Fix vet test (#733) ([email protected])
- initial prop for custom resources. (#722) ([email protected])
- partial fix for PR #722 Work Item 1 (#725) ([email protected])
* Fri Feb 02 2018 jesus m. rodriguez <[email protected]> 1.2.1-1
- Bug 1541265 - avoid broker panic, check for nil (#723) ([email protected])
- Bug 1538986 - Remove bad enum values from Update Request (#713) ([email protected])
- Bug 1533425 - handle missing pod action error (#716) ([email protected])
- Bug 1534957 - Add namespace to broker config docs (#712) ([email protected])
- Bug 1539757 - async unbind returns http 202 (#704) ([email protected])
- Bug 1537367 - fix the test for last_operation (#688) ([email protected])
- No longer only search for apbs that end with -apb (#719) ([email protected])
- revert image back to match blog post in simple broker template. (#714) ([email protected])
- Proposes solutions for tracking state of BindInstance creation (#680) ([email protected])
- Check that all the containers in a pod are running (#706) ([email protected])
- Ignore IDE extras (#703) ([email protected])
- Add fall through case to deprovision handler (#700) ([email protected])
- update copyright date to 2018 (#699) ([email protected])
- Make the k8s CI scripts consumable with curl (#695) ([email protected])
- Adding ability for Subject Rules Review to do the correct check. (#693) ([email protected])
- Remove unecessary dao ref from DeproJob (#691) ([email protected])
- add a 3.10 releaser (#690) ([email protected])
- bump version to 1.2 ([email protected])
* Thu Jan 25 2018 jesus m. rodriguez <[email protected]> 1.1.8-1
- Add proxy docs (#634) ([email protected])
- Bug 1536629 - Send job msg immediately as job starts. (#671) ([email protected])
- Bug 1537367 - missing last_operation for bindings (#677) ([email protected])
- Continue to load specs even when a spec fails to load (#682) ([email protected])
- Bug 1506978 - Include lowercase proxy vars (#683) ([email protected])
- One CI fix and a few improvements (#679) ([email protected])
- add ASB debugging guide (#676) ([email protected])
- Bug 1536659 - bind PUT returns http code 202 when operation runs async (#669) ([email protected])
* Tue Jan 23 2018 Jason Montleon <[email protected]> 1.1.7-1
- Skip running the travis job if we're only changing docs (#678)
- fixes #665 - remove many of the TODOs (#673) ([email protected])
- Add a second job that runs the broker on k8s (#643) ([email protected])
- Update test bash scripts (#668) ([email protected])
- Fail faster with travis (#658) ([email protected])
- Remove old comment re: platform version header (#661) ([email protected])
- Remove ancient comment with app startup (#664) ([email protected])
* Fri Jan 19 2018 David Zager <[email protected]> 1.1.6-1
- Bug 1536629 - send job state and credentials from job (#610)
- Bug 1536088 - fixes panic when bind can't find ServiceInstance (#653)
- Fix linting on ProxyConfig (#662) ([email protected])
- Bug 1534957 - Fix secret parameters regression (#659) ([email protected])
- make build-image isn't retrying (#656) ([email protected])
- Add some missing networking permissions to the k8s template (#657)
- Bug 1535182 - adding ability to retrieve an array of subconfigs (#655)
- Bug 1506978 - Apply proxy settings to running APBs (#654)
- Bug 1535652 - return 200 to bind PUT when a binding already exists (#650)
- Bug 1534715 - Moves BindInstance retrieval and error handling to handler.go
(#648) ([email protected])
- Bug 1534467 - apiserver was not told how to output error response (#647)
- Print information on any pod failures (#646) ([email protected])
- vendor bump to k8s 1.9.1 (#645) ([email protected])
* Tue Jan 16 2018 David Zager <[email protected]> 1.1.5-1
- Bug 1534715 - unbind checks for existence of binding before trying to delete
it (#642) ([email protected])
- quiet errors related to docker0 address (#641) ([email protected])
- Bug 1526949 - Set registry user/pass if auth_type is not defined (#635)
- Openshift Multi-tenant Sandbox Hooks (#600) ([email protected])
- Async bind feature (#625) ([email protected])
- Fix debug statement for ISV registry to be more verbose (#633)
- Add minishift documentation (#627) ([email protected])
- Update config doc to document storing creds in a secret (#628)
- Bug 588 - Run latest build with a default public ip. (#626)
- Bug 1533208 - Re adding registry auth as secrets and files (#629)
- fixing handler tests in master branch (#630) ([email protected])
- uses "exec" so bash process gets replaced instead of retained (#624)
- Bug 1472226 - Add additional field validations for JSON Schema. (#615)
- fixes typo in a log statement (#622) ([email protected])
- Add 3.8/3.9 releasers to tito (#620) ([email protected])
* Mon Jan 08 2018 David Zager <[email protected]> 1.1.4-1
- Use the router prefix for apb tool endpoints (#616) ([email protected])
- Bug 1526887 - Handle case when whitelist/blacklist set to "" (#609)
- Bug 617 - fixing issue with versioning the rbac API. (#618)
- fix potential nil pointer panic (#613) ([email protected])
- fix incorrect check in if statement (#611)
- Bug 1512042 - Allowing error messages to make it from apb to user. (#607)
- The config should only use type as a key when name does not exist. (#606)
- Remove WorkMsg interface to avoid unneeded marshalling and
unmarshalling.(#604) ([email protected])
- remove the different job msg types to avoid duplication of code (#603)
* Thu Dec 21 2017 Jason Montleon <[email protected]> 1.1.3-1
- Fixes labels on asb Endpoint in local dev template (#598)
- Adding local openshift adapter (#601) ([email protected])
- allows parameter types to be case-insensitive (#599) ([email protected])
- Execute into a pod with API for runtime V1 (#596) ([email protected])
- Simple template to support my blog post (#597) ([email protected])
- Bug 1525817 - remove duplicate help output and return 0 exit code. (#594)
- stop multiple update apb containers from launching (#595)
- Initial proposal for dealing with network isolation SDNs (#572)
- Remove logging from function and structs. (#582) ([email protected])
- Upgrading dependancies to K8s 1.8.5 (#589) ([email protected])
- Change the python path to /usr/bin/env (#591) ([email protected])
- Notify the apb what cluster it's running on with extravars (#577)
- Make prep-local explicit and update docs (#587) ([email protected])
- Bug 1510486 - Return 403 for disallowed actions (#586)
- Resolve runtime version from local openshift (#581) ([email protected])
- fixes a typo and clarifies the name of "kube-service-catalog" (#583)
- Adding ability to warn and filter out bad specs. (#571)
- Remove unused ocLogin function (#580) ([email protected])
- fixes README to reflect behavioral changes (#578) ([email protected])
- Config impl (#567) ([email protected])
- Identify the cluster in the NewRuntime call (#574) ([email protected])
* Mon Dec 04 2017 Jason Montleon <[email protected]> 1.1.2-1
- Broker should extract credentials from secret (#555)
* Mon Dec 04 2017 Jason Montleon <[email protected]> 1.1.1-1
- docs and ci template updates for apb name changes (#573)
- Use the rbac API when creating and deleting policy (#556)
- Few fixes to the local deploy templates (#568) ([email protected])
- Give cluster client the log object (#565) ([email protected])
- Rebase k8s templates to pickup etcd name change (#563) ([email protected])
- Create a Kubernetes Client struct (#561) ([email protected])
- Update vendor directory (#562) ([email protected])
- First pass at last_operation description proposal (#537)
- Pull apb templates from their respective git repos (#560)
- adding ability to connnect over SSL w/o authentication. (#558)
- Update copr link in Makefile comments (#559) ([email protected])
- Integrate a new ci framework for travis (#463) ([email protected])
- Use the Kubernetes API for namespaces check (#552) ([email protected])
- using table driven testing (#551) ([email protected])
- Setup tls support for k8s deployments (#496) ([email protected])
- Proposal to improve bind credential extraction (#550)
- Expose the pod name/namespace to APB (#546) ([email protected])
- remove unneeded paragraph from license header (#549) ([email protected])
- Integrate with coveralls for code coverage (#548) ([email protected])
- Create release notes script to grab changes (#545) ([email protected])
- bump version for next release (#547) ([email protected])
* Tue Nov 07 2017 David Zager <[email protected]> 1.0.19-1
- Bug 1507111 - Do not force image tag to be IP + Port (#540)
* Mon Nov 06 2017 jesus m. rodriguez <[email protected]> 1.0.18-1
- Bug 1507111 - Update docs and example configs for local openshift adapter (#538) ([email protected])
- Improve logging for missing tags (#536) ([email protected])
* Mon Nov 06 2017 Jason Montleon <[email protected]> 1.0.17-1
- Attempting fix for image name. (#539) ([email protected])
* Mon Nov 06 2017 Jason Montleon <[email protected]>
- Attempting fix for image name. (#539) ([email protected])
* Fri Nov 03 2017 jesus m. rodriguez <[email protected]> 1.0.15-1
- Bug 1504927 - if apbs fail, mark them as failed. (#534) ([email protected])
- Bug 1507111 - Add support for a local OpenShift Registry adapter (#527) ([email protected])
- Bug 1476173 - Cleanup deleting namespaces (#529) ([email protected])
- Bug 1501523 - Add spec plan to image during apb push (#533) ([email protected])
- Look for the url in the proper place (#535) ([email protected])
- Setting generated local dev template to autoescalate: false (#532) ([email protected])
- setting default value for the deployment template. (#528) ([email protected])
* Thu Nov 02 2017 Shawn Hurley <[email protected]> 1.0.14-1
- Bug 1507617 - Adding SSL and Authentication to etcd (#522)
- grep for correct asb-token for local dev. (#526) ([email protected])
- Changing the default for auto escalate to false (#503)
- Bug 1502044 - add buffer size and work_engine test (#510) ([email protected])
- add ServiceClassID and ServiceInstanceID parameters during provision and bind
(#515) ([email protected])
- when building the broker for image also build for linux OS. (#525)
- Call the correct service-catalog namespace (#524) ([email protected])
- Remove checks for DOCKER_USER and DOCKER_PASSWORD (#523)
* Mon Oct 30 2017 Jason Montleon <[email protected]> 1.0.13-1
- Bug 1503289 - Move registry credentials to a secret (#502)
* Mon Oct 30 2017 Jason Montleon <[email protected]> 1.0.12-1
- Bug 1476173 - Skip deprovision if the namespace is being deleted since we
(#520) ([email protected])
- Bug 1506713 - handle updatable enum parameters properly in schema output
(#517) ([email protected])
- Bug 1504250 - Keep listening for deprovision messages (#508)
- Bug 1504957 - Broker should use recreate strategy (#511)
- Bug 1504729 - Log job state when getting last op (#505)
- update resource field names (#519) ([email protected])
- Adding docs for prometheus. (#507) ([email protected])
- accept update with bad params and log warnings instead of erroring (#516)
- Fix gate for Openshift 3.7 (#513) ([email protected])
* Mon Oct 23 2017 Jason Montleon <[email protected]> 1.0.11-1
- Update schema for instance-update (#444) ([email protected])
- remove trailing spaces from supporting files (#493) ([email protected])
- Look at the apbs in the catalog for a matching name when creating a secret
(#438) ([email protected])
- Adding prometheus metrics for ASB (#497) ([email protected])
- Bug 1499622 - Return 202 if provisioning job is in progress (#498)
- Bug 1503233 - Add liveness and readiness checks to ASB dc (#500)
- Bug 1502044 - deprovision fixes (#494) ([email protected])
- Bug 1501523 - Set plan name for APB push sourced specs (#495)
- Bug 1497839 - copy secrets to transient namespace and always run (#473)
- Fix api auth for ci test (#492) ([email protected])
* Fri Oct 13 2017 Jason Montleon <[email protected]> 1.0.10-1
- Move the gate to 3.7 (#489) ([email protected])
- Bug 1497766 - Adding ablity to specify keeping namespace alive (#474)
- Bug 1496572 - Clean up error message for invalid registry credentials. (#490)
- Update secrets docs to account for new fqname. (#487) ([email protected])
* Thu Oct 12 2017 jesus m. rodriguez <[email protected]> 1.0.9-1
- Bug 1500930 - Prevent multiple deprovision pods from spawning (#488) ([email protected])
- Bug 1501512 - bind issue when multiple calls to create the same binding (#486) ([email protected])
- Update deployment template to match latest service-catalog in origin (#485) ([email protected])
* Wed Oct 11 2017 jesus m. rodriguez <[email protected]> 1.0.8-1
- Bug 1500934 - Dynamic broker ns for secrets (#482) ([email protected])
- Bug 1500048 - make plan ids globally unique (#480) ([email protected])
- Add troubleshooting documentation to the broker (#479) ([email protected])
- Bug 1498954 - Broker in developer mode must support apb push (#476) ([email protected])
- Bug 1498933 - Do not delete apb-push sourced specs when bootstrapping (#477) ([email protected])
- Bug 1498992 - Ansible Service Broker template should default (#478) ([email protected])
- Bug 1498618 - Support bind parameters. (#467) ([email protected])
- Update run_latest_build w/ origin latest default (#471) ([email protected])
- Creating proposals for keeping transient namespace alive (#464) ([email protected])
* Wed Oct 04 2017 Jason Montleon <[email protected]> 1.0.7-1
- Bug 1498185 - Adjust versioning check so that it is done in the registry
package (#468) ([email protected])
* Wed Oct 04 2017 Jason Montleon <[email protected]> 1.0.6-1