Skip to content

Commit

Permalink
Add 2 reference talks
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed Jul 30, 2018
1 parent 19a872f commit 3fb8ef2
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 15 deletions.
8 changes: 6 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,15 @@ gitter: jenkinsci-ru/public

authors:
oleg_nenashev:
name: Oleg Nenashev
bio: Организатор Jenkins RU
name: Олег Ненашев
bio: Организатор Jenkins RU, мейнтейнер ядра Jenkins
external-image: false
picture: assets/images/authors/oleg-nenashev/profile.jpg
twitter: oleg_nenashev
arseniy_tashoyan:
name: Арсений Ташоян
bio: Hewlett Packard Enterprise
external-image: false

# do you want a larger site? change the option below
# options: [normal, large] | default: normal
Expand Down
25 changes: 12 additions & 13 deletions _layouts/talk.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% endif %}

<span class="date">
Last presented:
Представлен на:
<time datetime="{{ page.date | date:"%d-%m-%Y" }}">{{ page.date | date: "%B %d, %Y" }}</time>
{% if page.lastPresented and page.lastPresented.title %}
at
Expand All @@ -31,31 +31,30 @@

{% include links.html %}

{% if page.slideSource %}
<h4>Slides</h4>
{% if page.slides %}
<h4>Слайды</h4>
<div>
{% if page.slideSource == 'speakerdeck' %}
<script async class="speakerdeck-embed" data-id="{{ page.speakerdeckId }}" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>
{% if page.slides.speakerdeck %}
<script async class="speakerdeck-embed" data-id="{{ page.slides.speakerdeck }}" data-ratio="1.77777777777778" src="//speakerdeck.com/assets/embed.js"></script>
{% endif %}
{% if page.slideSource == 'slideshare' %}
{% if page.slides.slideshare %}
<iframe src="//www.slideshare.net/slideshow/embed_code/key/{{ page.slideshareId }}" width="{{ site.widthPx }}" height="485" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" style="border:1px solid #CCC; border-width:1px; margin-bottom:5px; max-width: 100%;" allowfullscreen>
</iframe>
<div style="margin-bottom:5px">
<strong>
<a href="//www.slideshare.net/{{ site.speakerdeck }}/{{ page.slideshareName }}"
<a href="//www.slideshare.net/{{ page.slides.slideshare }}"
title="{{ page.title }}" target="_blank">{{ page.title }}</a>
</strong> from <strong><a href="https://www.slideshare.net/{{ site.slideshare }}" target="_blank"> {{ site.name }} </a></strong> </div>
{% endif %}
{% if page.slideSource == 'external' %}
<a class="item" href="{{ page.slidesUrl }}">External source</a>
{% if page.slides.externalLink %}
<a class="item" href="{{ page.slides.externalLink }}">External source</a>
{% endif %}
</div>
{% endif %}

{% if page.video %}
<h4>Video</h4>
{% if page.video.source == 'youtube' %}
<iframe width="{{ site.widthPx }}" height="580" src="https://www.youtube.com/embed/{{ page.video.youtubeId }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
<h4>Видео</h4>
{% if page.video.youtube %}
<iframe width="{{ site.widthPx }}" height="580" src="https://www.youtube.com/embed/{{ page.video.youtube }}" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
{% endif %}
{% endif %}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Что нового в Jenkins?"
layout: talk
category: talks
headerImage: false
date: 2018-07-19
tag:
- config-as-code
- jenkins-x
- jenkins-essentials
- cloud-native
author: oleg_nenashev
slides:
speakerdeck: c0ce44f647e94b6ca803b8e2ea8a7699
---

Обзор состояния Jenkins и текущих проектов:
Configuration as Code, Cloud Native Jenkins, Jenkins X, Jenkins Essentials, поддержка Java 10, и многое другое
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: "Автоматизированное интеграционное тестирование сложных систем"
layout: talk
category: talks
headerImage: false
date: 2018-02-27
lastPresented:
title: Митап Jenkins СПб 10
url: https://www.meetup.com/St-Petersburg-Jenkins-Meetup/events/247770890/
tag:
- ansible
- pipeline
- apache_spark
- apache_zeppelin
author: arseniy_tashoyan
slides:
slideshare: ArseniyTashoyan/automated-integration-testing-of-complex-solutions
video:
youtube: DnF3nHRbIyM
---

Реализация мульти-конфигурационных тестов для распределенных систем
с помощью Jenkins Pipeline и Ansible
и обработка результатов тестов с помощью Apache Spark и Zeppelin.
4 changes: 4 additions & 0 deletions talks.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
<div class="item {% if post.star %}star{% endif %}">
<a class="url" href="{% if post.externalLink %}{{ post.externalLink }}{% else %}{{ site.url }}{{ post.url }}{% endif %}">
<h3 class="title">{{ post.title }}</h3>
{{ site.authors[post.author].name}}
{% if post.lastPresented %}
@ {{ post.lastPresented.title }}
{% endif %}
</a>
</div>
{% endif %}
Expand Down

0 comments on commit 3fb8ef2

Please sign in to comment.